updated comment

git-svn-id: https://svn.research-infrastructures.eu/d4science/gcube/trunk/spatial-data/geo-utility@128362 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Francesco Mangiacrapa 2016-04-27 14:09:07 +00:00
parent a3a4620b7b
commit 5449843cd2
1 changed files with 2 additions and 2 deletions

View File

@ -94,7 +94,7 @@ public class WmsGetStyles {
if(query==null || query.isEmpty())
return new ArrayList<String>();
logger.info("tentative get styles.. with query:" + query);
logger.info("tentative get styles.. with query: " + query);
styles = openConnectionGetStyles(urlConn, query);
if(styles==null || styles.isEmpty()){
@ -109,7 +109,7 @@ public class WmsGetStyles {
return styles;
}catch (Exception e) {
logger.error("Error Exception getStylesFromWms from url:" + urlConn + ", query: "+query, e);
logger.error("Error Exception getStylesFromWms from url: " + urlConn + ", query: "+query, e);
return styles;
}