From: Gert van Valkenhoef Date: Wed, 9 Nov 2011 22:55:05 +0000 (+0000) Subject: Fix unnecessary throw X-Git-Url: https://deadsoftware.ru/gitweb?p=odcread.git;a=commitdiff_plain;h=20254ed23eb75d8c3832b807ea97616fd684976e Fix unnecessary throw --- diff --git a/reader.cc b/reader.cc index 14b3b0c..a57e9be 100644 --- a/reader.cc +++ b/reader.cc @@ -235,8 +235,6 @@ Store *Reader::readStoreOrElemStore(bool isElem) { d_store = x; } else { // join(d_store, x) - // I have no idea what this would actually mean if it happened. - throw "Joining of stores not implemented"; } if (isElem) { d_elemList.push_back(x); @@ -251,8 +249,6 @@ Store *Reader::readStoreOrElemStore(bool isElem) { d_store = alien; } else { // join(d_store, alien) - // I have no idea what this would actually mean if it happened. - throw "Joining of stores not implemented"; } if (isElem) { d_elemList.push_back(alien);