Subversion Repositories eFlore/Applications.coel

Compare Revisions

Ignore whitespace Rev 1372 → Rev 1373

/trunk/src/org/tela_botanica/client/modeles/ValeurListeAsyncDao.java
275,14 → 275,11
abreviationStr = abreviationStr.substring(0, indexPoint);
id = id+abreviationStr;
}
// réinitialisation du compteur
cptPage = 0;
 
/** On retourne la liste Ă  la vue **/
if (ontologieCache.get(id) != null) {
if (vueARafraichir instanceof Sequenceur) {
if (Mediateur.DEBUG) System.out.println("<-- ValeurListeAsyncDao > Liste en cache, retour au sequenceur");
if (Mediateur.DEBUG) System.out.println("<-- ValeurListeAsyncDao > Liste en cache, retour au sequenceur (cptPage="+cptPage+")");
vueARafraichir = (Sequenceur) vueARafraichir;
Reponse reponse = new Reponse(ontologieCache.get(id), seqId);
vueARafraichir.rafraichir(reponse);
291,6 → 288,9
vueARafraichir.rafraichir(ontologieCache.get(id));
}
}
// réinitialisation du compteur
cptPage = 0;
}
}
}