Subversion Repositories eFlore/Applications.coel

Compare Revisions

Ignore whitespace Rev 1844 → Rev 1845

/trunk/src/org/tela_botanica/client/util/UtilDate.java
16,4 → 16,12
}
return dateChaine;
}
public static String formaterEnStringFormatFr(Date date) {
String dateChaine = "0000-00-00";
if (date != null) {
dateChaine = formatDateFr.format(date);
}
return dateChaine;
}
}