Subversion Repositories eFlore/Applications.cel

Compare Revisions

Ignore whitespace Rev 1009 → Rev 1010

/trunk/src/org/tela_botanica/client/util/Util.java
154,7 → 154,7
int mois = Integer.parseInt(tabDate[1]);
int annee = Integer.parseInt(tabDate[2]);
if(jour < 31 && mois < 12 && tabDate[2].length() == 4) {
if(jour <= 31 && mois <= 12 && tabDate[2].length() == 4) {
retour = true;
}
} catch (Exception e) {