--- android/TrainInfoServiceGoogle/src/dk/thoerup/traininfoservice/StationDAO.java 2012/02/29 18:40:37 1702 +++ android/TrainInfoServiceGoogle/src/dk/thoerup/traininfoservice/StationDAO.java 2012/02/29 18:48:27 1703 @@ -73,13 +73,13 @@ for(JdoStationBean bean : beanList) { if (bean.getName().toLowerCase().startsWith(searchname)) { stationBean.entries.add( bean.toStationEntry() ); - } else { + } /*else { for (String alias : bean.aliases ) { if (alias.toLowerCase().startsWith(searchname)) { stationBean.entries.add( bean.toStationEntry() ); } } - } + }*/ } Collections.sort(stationBean.entries, new Comparator() {