From 8d645ee5fa8ff33a34a8cb800952c160fcb6d3cd Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Euzenat?= <Jerome.Euzenat@inria.fr>
Date: Wed, 12 Sep 2007 16:28:37 +0000
Subject: [PATCH] - suppressed prints

---
 .../inrialpes/exmo/align/util/GroupAlign.java | 28 +------------------
 1 file changed, 1 insertion(+), 27 deletions(-)

diff --git a/src/fr/inrialpes/exmo/align/util/GroupAlign.java b/src/fr/inrialpes/exmo/align/util/GroupAlign.java
index 83553205..c5ad41ce 100644
--- a/src/fr/inrialpes/exmo/align/util/GroupAlign.java
+++ b/src/fr/inrialpes/exmo/align/util/GroupAlign.java
@@ -277,7 +277,6 @@ public class GroupAlign {
 	if ( urlprefix != null ){
 	    prefix = urlprefix+"/"+dir.getName()+"/";
 	} else {
-	    //prefix = "file://localhost"+dir.toString()+"/";
 	    // sounds like the only way to have something portable
 	    // This is the modification for acomodating the HCONE 
 	    prefix = dir.toURI().toString();
@@ -290,39 +289,14 @@ public class GroupAlign {
 	//System.err.println("Here it is "+prefix+" (end by /?)");
 
 	BasicConfigurator.configure();
-	//System.err.println("Before: uri1= "+uri1+", uri11= "+uri11);
 	if ( uri1 == null ) {uri1 = new URI(prefix+source);}
 	if (!source.equalsIgnoreCase("onto1.rdf") && !target.equalsIgnoreCase("onto1.rdf")){uri1 = new URI(prefix+source);}
-	//else{uri11 = uri1;}
 	URI uri2 = new URI(prefix+target);
-	System.err.println(" uri1= "+uri1+"\n uri2= "+uri2);
-
-	/*
-	handler = new OWLRDFErrorHandler() {
-		public void owlFullConstruct(int code, String message)
-		    throws SAXException {
-		}
-		public void owlFullConstruct(int code, String message, Object o)
-		    throws SAXException {
-		}
-		public void error(String message) throws SAXException {
-		    throw new SAXException(message.toString());
-		}
-		public void warning(String message) throws SAXException {
-		    System.err.println("WARNING: " + message);
-		}
-	    };
-	*/
 
 	if (debug > 1) System.err.println(" Handler set");
 	if (debug > 1) System.err.println(" URI1: "+uri1);
 	if (debug > 1) System.err.println(" URI2: "+uri2);
-	    
-	//try {
-	//    if (uri11 != null) onto1 = loadOntology(uri11);
-	//    if (uri2 != null) onto2 = loadOntology(uri2);
-	//} catch (Exception e) { return ;};
-	//if (debug > 1) System.err.println(" Ontology parsed");
+
 	try {
 	    if (initName != null) {
 		AlignmentParser aparser = new AlignmentParser(debug-1);
-- 
GitLab