From 66ff5861332595e8cea40218faed07fd474c1d3b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Euzenat?= <Jerome.Euzenat@inria.fr>
Date: Mon, 28 Apr 2014 20:52:15 +0000
Subject: [PATCH] - suppressed useless comments

---
 src/fr/inrialpes/exmo/align/parser/RDFParser.java | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/src/fr/inrialpes/exmo/align/parser/RDFParser.java b/src/fr/inrialpes/exmo/align/parser/RDFParser.java
index c88cfe04..60b6eead 100644
--- a/src/fr/inrialpes/exmo/align/parser/RDFParser.java
+++ b/src/fr/inrialpes/exmo/align/parser/RDFParser.java
@@ -3,7 +3,7 @@
  *
  * Copyright (C) 2006 Digital Enterprise Research Insitute (DERI) Innsbruck
  * Sourceforge version 1.7 - 2008
- * Copyright (C) INRIA, 2008-2010, 2012-2013
+ * Copyright (C) INRIA, 2008-2010, 2012-2014
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by
@@ -164,8 +164,6 @@ public class RDFParser {
     public EDOALAlignment parse( final Model rdfmodel ) throws AlignmentException {
 	// Initialize the syntax description
 	initSyntax();
-	// Shut up logging handling
-	//com.hp.hpl.jena.rdf.model.impl.RDFDefaultErrorHandler.silent = true;
 	// Get the statement including alignment resource as rdf:type
 	StmtIterator stmtIt = rdfmodel.listStatements(null, RDF.type,(Resource)SyntaxElement.getResource("Alignment"));
 	// Take the first one if it exists
@@ -176,7 +174,7 @@ public class RDFParser {
 	// If necessary type-check the alignment
 	if ( !speedparse ) alignment.accept( new TypeCheckingVisitor() );
 	// Clean up memory
-	rdfmodel.close(); // JE: I am not sure that I will not have trouble with initSyntax
+	rdfmodel.close();
 	return alignment;
     }
 
-- 
GitLab