From c5748ee9a62aa20c0fd6977d68a6552ca7c9c9e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Euzenat?= <Jerome.Euzenat@inria.fr> Date: Thu, 16 Feb 2012 10:38:09 +0000 Subject: [PATCH] - improved warning control --- src/fr/inrialpes/exmo/align/impl/eval/ExtPREvaluator.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/fr/inrialpes/exmo/align/impl/eval/ExtPREvaluator.java b/src/fr/inrialpes/exmo/align/impl/eval/ExtPREvaluator.java index 473aedc3..26c81dde 100644 --- a/src/fr/inrialpes/exmo/align/impl/eval/ExtPREvaluator.java +++ b/src/fr/inrialpes/exmo/align/impl/eval/ExtPREvaluator.java @@ -404,11 +404,11 @@ public class ExtPREvaluator extends BasicEvaluator implements Evaluator { * This would require computing the transitive reduction of the superClass * relation which is currently returned by HeavyLoadedOntology. */ - @SuppressWarnings("unchecked") public int isSuperClass( Object class1, Object class2, HeavyLoadedOntology<Object> ontology ) throws AlignmentException { try { URI uri1 = ontology.getEntityURI( class1 ); Set<?> bufferedSuperClasses = null; + @SuppressWarnings("unchecked") Set<Object> superclasses = (Set<Object>)ontology.getSuperClasses( class2, OntologyFactory.DIRECT, OntologyFactory.ANY, OntologyFactory.ANY ); int level = 0; int foundlevel = 0; @@ -444,6 +444,7 @@ public class ExtPREvaluator extends BasicEvaluator implements Evaluator { try { URI uri1 = ontology.getEntityURI( prop1 ); Set<?> bufferedSuperProperties = null; + @SuppressWarnings("unchecked") Set<Object> superproperties = (Set<Object>)ontology.getSuperProperties( prop2, OntologyFactory.DIRECT, OntologyFactory.ANY, OntologyFactory.ANY ); int level = 0; int foundlevel = 0; -- GitLab