/[projects]/android/TrainInfoService/src/dk/thoerup/traininfoservice/db/StationDAO.java
ViewVC logotype

Diff of /android/TrainInfoService/src/dk/thoerup/traininfoservice/db/StationDAO.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2077 by torben, Mon Aug 20 21:15:37 2012 UTC revision 2078 by torben, Sat Nov 23 11:00:41 2013 UTC
# Line 55  public class StationDAO { Line 55  public class StationDAO {
55                          String[] emptyArray = {};                          String[] emptyArray = {};
56                          station.setAliases( emptyArray );                          station.setAliases( emptyArray );
57                  }                  }
58                    
59                  station.setTritStation( res.getInt(11) );                  int tritStation = res.getInt(11);
60                  if (res.wasNull())                  if (res.wasNull()) {
61                          station.setTritStation( -1 );                          tritStation = -1;
62                    }
63                    station.setTritStation( tritStation );
64    
65                  return station;                  return station;
66          }          }

Legend:
Removed from v.2077  
changed lines
  Added in v.2078

  ViewVC Help
Powered by ViewVC 1.1.20