Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/lookup/BinaryTypeBinding.java')
-rw-r--r--bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/lookup/BinaryTypeBinding.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/lookup/BinaryTypeBinding.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/lookup/BinaryTypeBinding.java
index 9b38f5ce..1b2eb938 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/lookup/BinaryTypeBinding.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/lookup/BinaryTypeBinding.java
@@ -565,7 +565,7 @@ public MethodBinding getExactMethod(char[] selector, TypeBinding[] argumentTypes
}
}
if (foundNothing) {
- if (superclass() != null) { // ensure superclass is resolved before checking
+ if (getSuperBinding() != null) { // ensure superclass is resolved before checking
if (refScope != null)
refScope.recordTypeReference(superclass);
return superclass.getExactMethod(selector, argumentTypes, refScope);
@@ -704,7 +704,7 @@ MethodBinding resolveTypesFor(MethodBinding method) {
*
* NOTE: superclass of a binary type is resolved when needed
*/
-public ReferenceBinding superclass() {
+public ReferenceBinding getSuperBinding() {
if ((this.tagBits & TagBits.HasUnresolvedSuperclass) == 0)
return this.superclass;

Back to the top