|
@ -604,9 +604,11 @@ namespace storm { |
|
|
|
|
|
|
|
|
if (inputFileStream.good()) { |
|
|
if (inputFileStream.good()) { |
|
|
try { |
|
|
try { |
|
|
std::string prop; |
|
|
|
|
|
std::getline(inputFileStream, prop); |
|
|
|
|
|
properties.push_back(prop); |
|
|
|
|
|
|
|
|
while (inputFileStream.good()) { |
|
|
|
|
|
std::string prop; |
|
|
|
|
|
std::getline(inputFileStream, prop); |
|
|
|
|
|
properties.push_back(prop); |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
catch (std::exception& e) { |
|
|
catch (std::exception& e) { |
|
|
inputFileStream.close(); |
|
|
inputFileStream.close(); |
|
|