Subversion Repositories eFlore/Applications.cel

Compare Revisions

Ignore whitespace Rev 157 → Rev 217

/trunk/src/org/tela_botanica/client/modeles/Observation.java
160,12 → 160,14
this.date = date;
// Suppresion indication departementale (on pourrait faire mieux !!)
int pos=localite.indexOf(" (" );
if (pos>=0) {
this.localite=localite.substring(0,pos);
}
else {
this.localite=localite;
if(localite != null) {
int pos=localite.indexOf(" (" );
if (pos>=0) {
this.localite=localite.substring(0,pos);
}
else {
this.localite=localite;
}
}
this.motsCles = "" ;