Bug 525854 - Fix Java SE platform detection and clean up platform code
             Fixed typo in the code.

Signed-off-by: Tomas Kraus <tomas.kraus@oracle.com>
diff --git a/foundation/org.eclipse.persistence.core/src/org/eclipse/persistence/internal/helper/JavaSEPlatform.java b/foundation/org.eclipse.persistence.core/src/org/eclipse/persistence/internal/helper/JavaSEPlatform.java
index 0f69ca6..1caf95e 100644
--- a/foundation/org.eclipse.persistence.core/src/org/eclipse/persistence/internal/helper/JavaSEPlatform.java
+++ b/foundation/org.eclipse.persistence.core/src/org/eclipse/persistence/internal/helper/JavaSEPlatform.java
@@ -147,7 +147,7 @@
      * @param platform Java SE platform to compare with.
      */
     public static boolean atLeast(JavaSEPlatform platform) {
-        return CURRENT.atLeast(platform);
+        return CURRENT.gte(platform);
     }
 
     /**