Mentions légales du service

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

- corrected the inversion of "force" in align()

parent 439aad51
No related branches found
No related tags found
No related merge requests found
...@@ -45,6 +45,7 @@ ...@@ -45,6 +45,7 @@
<li>Got rid of the property file for wordnet</li> <li>Got rid of the property file for wordnet</li>
<li>In Server/FIPA, suppressed generated files on close()</li> <li>In Server/FIPA, suppressed generated files on close()</li>
<li>In Server/FIPA, suppressed printout</li> <li>In Server/FIPA, suppressed printout</li>
<li>Corrected an error on "force"-ing alignment in Server/HTML (was inverted)</li>
</ul></p> </ul></p>
<h2>February 25th, 2007</h2> <h2>February 25th, 2007</h2>
......
...@@ -276,7 +276,7 @@ public class AServProtocolManager { ...@@ -276,7 +276,7 @@ public class AServProtocolManager {
// Unexpected OWLException! // Unexpected OWLException!
} }
String id = null; String id = null;
if ( alignments != null && params.getParameter("force") != null ) { if ( alignments != null && params.getParameter("force") == null ) {
for ( Iterator it = alignments.iterator(); it.hasNext() && (id == null); ){ for ( Iterator it = alignments.iterator(); it.hasNext() && (id == null); ){
Alignment al = ((Alignment)it.next()); Alignment al = ((Alignment)it.next());
if ( al.getExtension( "method" ).equals(method) ) if ( al.getExtension( "method" ).equals(method) )
......
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