Index: branches/ATMSDriver/src/atmsdriver/NetworkReader.java
===================================================================
--- branches/ATMSDriver/src/atmsdriver/NetworkReader.java	(revision 75)
+++ branches/ATMSDriver/src/atmsdriver/NetworkReader.java	(revision 76)
@@ -64,5 +64,5 @@
         ArrayList<Integer> lineNums = new ArrayList<>();
         
-        System.out.println(sc.nextLine()); // skip first line
+        sc.nextLine(); // skip first line
         
         while(sc.hasNext())
@@ -75,5 +75,4 @@
             {
                 lineNums.add(lineNum);
-                System.out.println("Adding line: " + lineNum);
             }
        
@@ -100,5 +99,4 @@
             {
                 stnNums.add(stnNum);
-                System.out.println("Adding stn " + stnNum + " to line " + theLine);
             }
             
@@ -235,5 +233,5 @@
         /** GRABS FROM CURRENT TO END OF LINE */
         sc.useDelimiter("\\z"); 
-        String loc = sc.next();
+        String loc = sc.next().trim();
         sc.close();
         return loc;
@@ -254,5 +252,5 @@
             if(ldsID == stnNum) // if we are on correct stn
             {
-                scLine.nextInt(); // skip line num
+                int lineNum = scLine.nextInt(); // skip line num
                 int drop = scLine.nextInt(); // drop num
                 scLine.nextInt(); // skip schedule
@@ -266,6 +264,5 @@
                 double postmile = scLine.nextDouble();
                 String ldsName = getLocation(strLine); /************* DOESNT GRAB WHOLE???? */////
-                System.out.println("LDSNAME: " + ldsName);
-                LDS = new LoopDetectorStation(stnNum, ldsID, drop, ldsName, detectors, fwy, dir, postmile);
+                LDS = new LoopDetectorStation(lineNum, ldsID, drop, ldsName, detectors, fwy, dir, postmile);
                 
                 break;
