From 67ea97f704bd68db5935255be8b74be873e89921 Mon Sep 17 00:00:00 2001 From: david Date: Thu, 20 Mar 2003 14:50:33 +0000 Subject: [PATCH] Oops -- the array wasn't being read when there was no *.fit file (my fault). --- src/Lib/Array/array.cxx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Lib/Array/array.cxx b/src/Lib/Array/array.cxx index 21b8b730..b20c100b 100644 --- a/src/Lib/Array/array.cxx +++ b/src/Lib/Array/array.cxx @@ -97,7 +97,6 @@ bool TGArray::open( const string& file_base ) { fitted_in = new sg_gzifstream( fitted_name ); if ( ! fitted_in->is_open() ) { cout << " Cannot open " << fitted_name << endl; - success = false; } else { cout << " Opening fitted data file: " << fitted_name << endl; }