Strabon
changeset 1443:077efe72e238
removed some print outs
author | Babis Nikolaou <charnik@di.uoa.gr> |
---|---|
date | Thu Oct 30 15:48:36 2014 +0200 (2014-10-30) |
parents | 025b64f6f1fa |
children | ebb6f2f3a12b |
files | resultio-spatial/sparqlgeojson/src/main/java/org/openrdf/query/resultio/sparqlgeojson/stSPARQLResultsGeoJSONWriter.java |
line diff
1.1 --- a/resultio-spatial/sparqlgeojson/src/main/java/org/openrdf/query/resultio/sparqlgeojson/stSPARQLResultsGeoJSONWriter.java Thu Oct 30 15:37:40 2014 +0200 1.2 +++ b/resultio-spatial/sparqlgeojson/src/main/java/org/openrdf/query/resultio/sparqlgeojson/stSPARQLResultsGeoJSONWriter.java Thu Oct 30 15:48:36 2014 +0200 1.3 @@ -215,7 +215,6 @@ 1.4 1.5 properties.add(binding.getName()); 1.6 values.add(value); 1.7 - System.out.println(value.getClass()); 1.8 } 1.9 } 1.10 1.11 @@ -232,15 +231,12 @@ 1.12 URI datatype = lit.getDatatype(); 1.13 1.14 if (XMLGSDatatypeUtil.isNumericDatatype(datatype)) { 1.15 - System.out.println("is number"); 1.16 sftb.add(properties.get(p), Number.class); 1.17 1.18 } else if (XMLGSDatatypeUtil.isCalendarDatatype(datatype)) { 1.19 - System.out.println("is calendar"); 1.20 sftb.add(properties.get(p), Calendar.class); 1.21 1.22 } else if (XMLGSDatatypeUtil.isBooleanDatatype(datatype)) { 1.23 - System.out.println("is boolean"); 1.24 sftb.add(properties.get(p), Boolean.class); 1.25 1.26 } else { // fallback to String