Strabon
changeset 117:181aed20b5e8
Removed some minor prints related to store
author | Manos Karpathiotakis <mk@di.uoa.gr> |
---|---|
date | Wed Apr 18 11:56:23 2012 +0300 (2012-04-18) |
parents | cde1aa4286f9 |
children | 22fd30137096 |
files | generaldb/src/main/java/org/openrdf/sail/generaldb/schema/LiteralTable.java |
line diff
1.1 --- a/generaldb/src/main/java/org/openrdf/sail/generaldb/schema/LiteralTable.java Tue Apr 17 21:02:09 2012 +0300 1.2 +++ b/generaldb/src/main/java/org/openrdf/sail/generaldb/schema/LiteralTable.java Wed Apr 18 11:56:23 2012 +0300 1.3 @@ -258,7 +258,7 @@ 1.4 String[] crs=label.split(";"); 1.5 if((crs.length == 1)) 1.6 { 1.7 - System.out.println("The coordinate reference system for the spatial literal is not specified. WGS84 (srid 4326) is used (default)."); 1.8 + //System.out.println("The coordinate reference system for the spatial literal is not specified. WGS84 (srid 4326) is used (default)."); 1.9 return 4326; //use this as default 1.10 } 1.11 String prefix="http://www.opengis.net/def/crs/EPSG/0/"; 1.12 @@ -266,9 +266,9 @@ 1.13 int index=crs[1].lastIndexOf('/'); 1.14 index++; 1.15 Integer srid = Integer.parseInt(crs[1].substring(index)); 1.16 - System.out.println("The EPSG code: " + srid); 1.17 + //System.out.println("The EPSG code: " + srid); 1.18 1.19 - System.out.println("SRS FOUND:"+srid); 1.20 + //System.out.println("SRS FOUND:"+srid); 1.21 return srid; 1.22 }else{ 1.23 throw new IllegalArgumentException("MALFORMED URI FOR SRID!!!");