--- android/TrainInfoService/src/dk/thoerup/traininfoservice/banedk/TimetableFetcher.java 2011/04/20 05:20:43 1330 +++ android/TrainInfoService/src/dk/thoerup/traininfoservice/banedk/TimetableFetcher.java 2011/04/20 05:25:48 1331 @@ -60,7 +60,7 @@ return lookupTimetableAzureSite(trainID, type); } else { - return lookupTimetableWwwSite(trainID, type); + return lookupTimetableMobileSite(trainID, type); } } @@ -170,6 +170,11 @@ return timetableBean; } + TimetableBean lookupTimetableMobileSite(String trainID, String type) throws Exception { + return new TimetableBean(); //dummy skeleton method + } + + @Deprecated TimetableBean lookupTimetableWwwSite(String trainID, String type) throws Exception { TimetableBean timetableBean = new TimetableBean();