Changeset 158 in tmcsimulator for trunk/src/tmcsim/client/ATMSBatchDriver.java


Ignore:
Timestamp:
10/21/2017 11:28:15 AM (9 years ago)
Author:
jdalbey
Message:

ATMSBatchDriver: Removed diagnostic output of ATMS time. build.xml fixed ATMSBatchDriver.jar target.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/tmcsim/client/ATMSBatchDriver.java

    r157 r158  
    141141            System.exit(0); 
    142142        } 
     143        // Initialize the highway model 
    143144        incidents = new HashMap<String, List<String>> (); 
    144145        highways = new Highways( 
     
    175176                    long simtime = theCoorInt.getCurrentSimulationTime(); 
    176177                    currentClock = formatInterval(simtime); 
    177                     long ATMStime = theCoorInt.getATMStime();        
    178                     Date atmsdate = new Date(ATMStime); 
    179                     currentATMStime = formatter.format(atmsdate); 
     178                    // For Debugging, show the ATMS time 
     179//                    long ATMStime = theCoorInt.getATMStime();        
     180//                    Date atmsdate = new Date(ATMStime); 
     181//                    currentATMStime = formatter.format(atmsdate); 
    180182                    try { 
    181183                        simClock = formatter.parse(currentClock); 
     
    188190                } catch (RemoteException ex) 
    189191                { 
     192                    System.out.println("Remote Exception reading sim or ATMS clock time"); 
    190193                    Logger.getLogger(ATMSBatchDriver.class.getName()).log(Level.SEVERE, null, ex); 
    191194                } 
Note: See TracChangeset for help on using the changeset viewer.