### Eclipse Workspace Patch 1.0 #P org.eclipse.jdt.core Index: search/org/eclipse/jdt/core/search/MethodReferenceMatch.java =================================================================== RCS file: /cvsroot/eclipse/org.eclipse.jdt.core/search/org/eclipse/jdt/core/search/MethodReferenceMatch.java,v retrieving revision 1.22 diff -u -r1.22 MethodReferenceMatch.java --- search/org/eclipse/jdt/core/search/MethodReferenceMatch.java 10 Oct 2006 10:33:17 -0000 1.22 +++ search/org/eclipse/jdt/core/search/MethodReferenceMatch.java 21 Mar 2007 16:57:58 -0000 @@ -125,17 +125,4 @@ public boolean isSuperInvocation() { return this.superInvocation; } - - /** - * Returns whether the reference is on a polymorphic method or not. - * Note that this field is only used for method reference. This happens when the reference - * is not implemented on the declaring class pattern but only on one of its super or sub type. - * - * @return true if the reference is a polymorphic method or not, - * false otherwise - * @deprecated Will be removed soon... - */ - public boolean isPolymorphic() { - return this.superInvocation; - } }