Subversion Repositories eFlore/Applications.cel

Rev

Rev 157 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 157 Rev 217
Line 158... Line 158...
158
		this.milieu = milieu;
158
		this.milieu = milieu;
159
		this.commentaire = commentaire;
159
		this.commentaire = commentaire;
160
		this.date = date;
160
		this.date = date;
Line 161... Line 161...
161
		
161
		
-
 
162
		 // Suppresion indication departementale (on pourrait faire mieux !!)
162
		 // Suppresion indication departementale (on pourrait faire mieux !!)
163
		if(localite != null) {
163
		int pos=localite.indexOf(" (" );
164
			int pos=localite.indexOf(" (" );
164
	    if (pos>=0) {
165
		    if (pos>=0) {
165
	    	this.localite=localite.substring(0,pos);
166
		    	this.localite=localite.substring(0,pos);
166
	    }
167
		    }
167
		else {
168
			else {
-
 
169
				 this.localite=localite;
168
			 this.localite=localite;
170
			}
Line 169... Line 171...
169
		}
171
		}
Line 170... Line 172...
170
	    
172