[Yanel-commits] rev 25730 - public/yanel/trunk/src/realms/welcome-admin/yanel/resources/update-webapp/src/java/org/wyona/yanel/impl/resources/updatefinder/utils

simon at wyona.com simon at wyona.com
Tue Jul 3 14:09:33 CEST 2007


Author: simon
Date: 2007-07-03 14:09:33 +0200 (Tue, 03 Jul 2007)
New Revision: 25730

Modified:
   public/yanel/trunk/src/realms/welcome-admin/yanel/resources/update-webapp/src/java/org/wyona/yanel/impl/resources/updatefinder/utils/UpdateInfoVersionComparator.java
Log:
called methode of wrong class fixed

Modified: public/yanel/trunk/src/realms/welcome-admin/yanel/resources/update-webapp/src/java/org/wyona/yanel/impl/resources/updatefinder/utils/UpdateInfoVersionComparator.java
===================================================================
--- public/yanel/trunk/src/realms/welcome-admin/yanel/resources/update-webapp/src/java/org/wyona/yanel/impl/resources/updatefinder/utils/UpdateInfoVersionComparator.java	2007-07-03 11:56:39 UTC (rev 25729)
+++ public/yanel/trunk/src/realms/welcome-admin/yanel/resources/update-webapp/src/java/org/wyona/yanel/impl/resources/updatefinder/utils/UpdateInfoVersionComparator.java	2007-07-03 12:09:33 UTC (rev 25730)
@@ -13,6 +13,6 @@
         String version = (String) ((Map) info).get("version");
         String anotherVersion = (String) ((Map) anotherInfo).get("version");
         VersionComparator versionComparator = new VersionComparator();
-        return compare(version, anotherVersion);
+        return versionComparator.compare(version, anotherVersion);
     }
 }
\ No newline at end of file




More information about the Yanel-commits mailing list