diff --git a/html/relnotes.html b/html/relnotes.html index ea7c47cbe74ec69b1e06c5a2a421a6ffe7db95a4..74eff9dbe4b7dfe8bc8b65746db3f22680a8caf3 100644 --- a/html/relnotes.html +++ b/html/relnotes.html @@ -45,6 +45,7 @@ <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 printout</li> +<li>Corrected an error on "force"-ing alignment in Server/HTML (was inverted)</li> </ul></p> <h2>February 25th, 2007</h2> diff --git a/src/fr/inrialpes/exmo/align/service/AServProtocolManager.java b/src/fr/inrialpes/exmo/align/service/AServProtocolManager.java index 40ddf0deb013f7513c9b3822e178deb691b7b889..b6b76e542e5a8518a2f9da33ec90eea51ea65f89 100644 --- a/src/fr/inrialpes/exmo/align/service/AServProtocolManager.java +++ b/src/fr/inrialpes/exmo/align/service/AServProtocolManager.java @@ -276,7 +276,7 @@ public class AServProtocolManager { // Unexpected OWLException! } 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); ){ Alignment al = ((Alignment)it.next()); if ( al.getExtension( "method" ).equals(method) )