Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 2b6168ba authored by Jérôme Euzenat's avatar Jérôme Euzenat
Browse files

- Fixed a display error in DiffEvaluator

parent e8ff2c41
No related branches found
No related tags found
No related merge requests found
...@@ -86,6 +86,7 @@ with a warning: ...@@ -86,6 +86,7 @@ with a warning:
<li>Simplified <tt>TestGen</tt> options (cli)</li> <li>Simplified <tt>TestGen</tt> options (cli)</li>
<li>Fixed server initialisation error with new log4j (server)</li> <li>Fixed server initialisation error with new log4j (server)</li>
<li>Fixed a float parsing bug in <tt>XMLParser</tt> (parser)</li> <li>Fixed a float parsing bug in <tt>XMLParser</tt> (parser)</li>
<li>Fixed a display error in <tt>DiffEvaluator</tt> (impl)</li>
<li>Corrected bug with <tt>owl:inverseOf</tt> in OWL rendering (edoal)</li> <li>Corrected bug with <tt>owl:inverseOf</tt> in OWL rendering (edoal)</li>
<li>All documentation has now been revised in html and is not in the (outdated) manuals (html)</li> <li>All documentation has now been revised in html and is not in the (outdated) manuals (html)</li>
<li>Replaced version.txt and license.txt by pom.xml (lib)</li> <li>Replaced version.txt and license.txt by pom.xml (lib)</li>
......
/* /*
* $Id$ * $Id$
* *
* Copyright (C) INRIA, 2010 * Copyright (C) INRIA, 2010, 2012
* *
* This program is free software; you can redistribute it and/or modify * 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 * it under the terms of the GNU Lesser General Public License as published by
...@@ -174,7 +174,7 @@ public class DiffEvaluator extends BasicEvaluator implements Evaluator { ...@@ -174,7 +174,7 @@ public class DiffEvaluator extends BasicEvaluator implements Evaluator {
public void printAsCells ( String what, Set<Cell> set, PrintWriter writer ) { public void printAsCells ( String what, Set<Cell> set, PrintWriter writer ) {
writer.println(" <"+what+" rdf:parseType=\"Collection\">"); writer.println(" <"+what+" rdf:parseType=\"Collection\">");
for ( Cell c : truepositive ){ for ( Cell c : set ){
try { try {
writer.println(" <Cell>"); writer.println(" <Cell>");
writer.println(" <entity1 rdf:resource=\""+c.getObject1AsURI()+"\">"); writer.println(" <entity1 rdf:resource=\""+c.getObject1AsURI()+"\">");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment