Author: echatellier Date: 2012-07-20 14:07:10 +0200 (Fri, 20 Jul 2012) New Revision: 3545 Url: http://chorem.org/repositories/revision/lima/3545 Log: Remove tabulations Modified: trunk/lima-callao/src/main/java/org/chorem/lima/entity/AccountDAOImpl.java trunk/lima-callao/src/main/java/org/chorem/lima/entity/EntryDAOImpl.java Modified: trunk/lima-callao/src/main/java/org/chorem/lima/entity/AccountDAOImpl.java =================================================================== --- trunk/lima-callao/src/main/java/org/chorem/lima/entity/AccountDAOImpl.java 2012-07-20 12:05:26 UTC (rev 3544) +++ trunk/lima-callao/src/main/java/org/chorem/lima/entity/AccountDAOImpl.java 2012-07-20 12:07:10 UTC (rev 3545) @@ -47,7 +47,7 @@ // FIXME echatellier 20120413 la requete ne fonctionne pas // et retourne vide /*String query = "FROM " + Account.class.getName() + " a WHERE a NOT IN (" + - "FROM " + Account.class.getName() + " b where b.accountNumber like concat(a.accountNumber,'%'))"; + "FROM " + Account.class.getName() + " b where b.accountNumber like concat(a.accountNumber,'%'))"; List<Account> accounts = context.find(query);*/ // code temporaire non performant en attandant: Modified: trunk/lima-callao/src/main/java/org/chorem/lima/entity/EntryDAOImpl.java =================================================================== --- trunk/lima-callao/src/main/java/org/chorem/lima/entity/EntryDAOImpl.java 2012-07-20 12:05:26 UTC (rev 3544) +++ trunk/lima-callao/src/main/java/org/chorem/lima/entity/EntryDAOImpl.java 2012-07-20 12:07:10 UTC (rev 3545) @@ -125,7 +125,7 @@ public String findLetters() throws TopiaException{ String result = ""; String query = "Select E.lettering FROM " + Entry.class.getName() + " E" + - " order by E.lettering desc"; + " order by E.lettering desc"; List<String> letters = context.findAll(query); if (!letters.isEmpty()) {
participants (1)
-
echatellier@users.chorem.org