Added toLowerCase
git-svn-id: http://svn.d4science-ii.research-infrastructures.eu/gcube/trunk/portlets/user/gcube-ckan-datacatalog@129220 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
9567a9dbc2
commit
a3f1b12453
|
@ -158,8 +158,7 @@ public class GcubeCkanDataCatalogServiceImpl extends RemoteServiceServlet implem
|
||||||
for (String vre : listVres) {
|
for (String vre : listVres) {
|
||||||
vres+=vre+",";
|
vres+=vre+",";
|
||||||
}
|
}
|
||||||
vres = vres.substring(0, vres.length()-1); //remove last ","
|
vres = vres.substring(0, vres.length()-1).toLowerCase(); //remove last "," and to lower case. A CKAN Organization ID must be lower case
|
||||||
vres.toLowerCase(); //A CKAN Organization ID must be lower case
|
|
||||||
}
|
}
|
||||||
|
|
||||||
logger.debug("List of VREs contains: " +vres);
|
logger.debug("List of VREs contains: " +vres);
|
||||||
|
|
Loading…
Reference in New Issue