Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKrzysztof Daniel2012-09-04 17:54:27 +0000
committerMike Rennie2012-09-04 17:54:43 +0000
commit176d9f36b174c79199db39afe242047fc5d6290d (patch)
treef98a9e594f578dcff68b5762755a209ee22c5e87
parent7eda8b1c2122ddd76399ea13c30fd539138797ea (diff)
downloadeclipse.platform.debug-176d9f36b174c79199db39afe242047fc5d6290d.tar.gz
eclipse.platform.debug-176d9f36b174c79199db39afe242047fc5d6290d.tar.xz
eclipse.platform.debug-176d9f36b174c79199db39afe242047fc5d6290d.zip
Bug 388120 - Compilation errors while building debug on Fedora withintegration
OpenJdK 7
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/breakpoints/BreakpointsComparator.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/breakpoints/BreakpointsComparator.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/breakpoints/BreakpointsComparator.java
index fd3fbe077..6fe092e01 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/breakpoints/BreakpointsComparator.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/breakpoints/BreakpointsComparator.java
@@ -182,7 +182,7 @@ public class BreakpointsComparator extends ViewerComparator {
}
int cmp;
if (num1 instanceof Long && num2 instanceof Long) {
- cmp = ((Long)num1).compareTo(num2);
+ cmp = ((Long)num1).compareTo((Long)num2);
} else {
cmp = Double.compare(num1.doubleValue(), num2.doubleValue());
}

Back to the top