Index: trunk/BNC/src/rinex/rnxobsfile.cpp
===================================================================
--- trunk/BNC/src/rinex/rnxobsfile.cpp	(revision 6587)
+++ trunk/BNC/src/rinex/rnxobsfile.cpp	(revision 6588)
@@ -1051,7 +1051,6 @@
 
   for (unsigned iSat = 0; iSat < epo->rnxSat.size(); iSat++) {
-    const t_rnxSat& rnxSat   = epo->rnxSat[iSat];
-    char            sys      = rnxSat.prn.system();
-    bool            sysFound = false;
+    const t_rnxSat& rnxSat = epo->rnxSat[iSat];
+    char            sys    = rnxSat.prn.system();
 
     const t_rnxObs* hlp[header.nTypes(sys)];
@@ -1069,5 +1068,4 @@
         if (typeV3 == type2to3(sys, type) && rnxObs.value != 0.0) {
           hlp[iTypeV3] = &itObs.value();
-          sysFound     = true; 
         }
       }
@@ -1082,11 +1080,6 @@
         if (hlp[iTypeV3] == 0 && typeV3 == type2to3(sys, type).left(2) && rnxObs.value != 0.0) {
           hlp[iTypeV3] = &itObs.value();
-          sysFound     = true; 
-        }
-      }
-    }
-
-    if (!sysFound) {
-      continue;
+        }
+      }
     }
 
