From 7d219f57d98e109c63a391b1aef8bd94a7bfbe74 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Euzenat?= <Jerome.Euzenat@inria.fr>
Date: Mon, 15 Sep 2008 08:17:29 +0000
Subject: [PATCH] - implemented the disparition of OntologyCache

---
 test/src/OWLAPIAlignmentTest.java | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/test/src/OWLAPIAlignmentTest.java b/test/src/OWLAPIAlignmentTest.java
index 9eda0554..7afc4db4 100644
--- a/test/src/OWLAPIAlignmentTest.java
+++ b/test/src/OWLAPIAlignmentTest.java
@@ -1,7 +1,7 @@
 /*
  * $Id$
  *
- * Copyright (C) INRIA Rhône-Alpes, 2008
+ * Copyright (C) INRIA, 2008
  *
  * 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
@@ -41,7 +41,6 @@ import fr.inrialpes.exmo.align.impl.rel.EquivRelation;
 import fr.inrialpes.exmo.align.impl.URIAlignment;
 import fr.inrialpes.exmo.align.impl.Annotations;
 import fr.inrialpes.exmo.align.impl.renderer.RDFRendererVisitor;
-import fr.inrialpes.exmo.align.onto.OntologyCache;
 import fr.inrialpes.exmo.align.onto.LoadedOntology;
 import fr.inrialpes.exmo.align.onto.Ontology;
 import fr.inrialpes.exmo.align.parser.AlignmentParser;
@@ -74,7 +73,7 @@ public class OWLAPIAlignmentTest {
 	assertNotNull( aparser, "AlignmentParser was null" );
 	URIAlignment result = (URIAlignment)aparser.parse( "file:examples/rdf/newsample.rdf" );
 	assertNotNull( result, "URIAlignment(result) was null" );
-	alignment = OWLAPIAlignment.toOWLAPIAlignment( result, (OntologyCache)null );
+	alignment = OWLAPIAlignment.toOWLAPIAlignment( result );
 	assertNotNull( alignment, "toOWLAPIAlignment(result) was null" );
 	result = alignment.toURIAlignment();
 	assertNotNull( result, "toURIAlignment() was null" );
-- 
GitLab