diff --git a/plugins/org.etsi.mts.tdl.constraints/src/org/etsi/mts/tdl/constraints/evl/Validator.java b/plugins/org.etsi.mts.tdl.constraints/src/org/etsi/mts/tdl/constraints/evl/Validator.java index 439abf605e8b38568b2386fd53337520db03cad1..106ae54d00c2920733e3b4e4b524df9f60189d7d 100644 --- a/plugins/org.etsi.mts.tdl.constraints/src/org/etsi/mts/tdl/constraints/evl/Validator.java +++ b/plugins/org.etsi.mts.tdl.constraints/src/org/etsi/mts/tdl/constraints/evl/Validator.java @@ -278,7 +278,6 @@ public class Validator { URI uri = null; URL location = this.getClass().getProtectionDomain().getCodeSource().getLocation(); String codeLocation = location.toString(); - System.out.println("Location: "+codeLocation); try{ if (codeLocation.endsWith(".jar")) { //Call from jar @@ -286,13 +285,10 @@ public class Validator { //should get file out of jar / bundle instead //TODO: simplify and merge with above, test other cases //TODO: generalise for use in other cases, e.g. for docx and others? - System.out.println("In jar"); try { Enumeration<URL> resources = ClassLoader.getSystemResources(relativePath.replaceAll("epsilon/", "")); URL nextElement = resources.nextElement(); - System.out.println("URL: "+nextElement); uri = nextElement.toURI(); - System.out.println("URI: "+uri); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace();