Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/core/dom/TypeBinding.java')
-rw-r--r--bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/core/dom/TypeBinding.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/core/dom/TypeBinding.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/core/dom/TypeBinding.java
index 4480c424..8dfb5453 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/core/dom/TypeBinding.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/core/dom/TypeBinding.java
@@ -597,7 +597,7 @@ class TypeBinding implements ITypeBinding {
}
ReferenceBinding superclass = null;
try {
- superclass = ((ReferenceBinding)this.binding).superclass();
+ superclass = ((ReferenceBinding)this.binding).getSuperBinding();
} catch (RuntimeException e) {
/* in case a method cannot be resolvable due to missing jars on the includepath
* see https://bugs.eclipse.org/bugs/show_bug.cgi?id=57871

Back to the top