mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-10 09:45:39 +02:00
Fixed another "unsafe method call" exception.
Change-Id: I9080867272856acfd7af0e6790a6c81000cc25f1 Signed-off-by: Nathan Ridge <zeratul976@hotmail.com> Reviewed-on: https://git.eclipse.org/r/14854 Reviewed-by: Sergey Prigogin <eclipse.sprigogin@gmail.com> IP-Clean: Sergey Prigogin <eclipse.sprigogin@gmail.com> Tested-by: Sergey Prigogin <eclipse.sprigogin@gmail.com>
This commit is contained in:
parent
3e84751400
commit
edd31ce10c
1 changed files with 1 additions and 1 deletions
|
@ -617,7 +617,7 @@ public class ClassTypeHelper {
|
||||||
if (visitedBefore != null)
|
if (visitedBefore != null)
|
||||||
return visitedBefore;
|
return visitedBefore;
|
||||||
|
|
||||||
ICPPMethod[] methods= classType.getDeclaredMethods();
|
ICPPMethod[] methods= ClassTypeHelper.getDeclaredMethods(classType, point);
|
||||||
ICPPMethod candidate= null;
|
ICPPMethod candidate= null;
|
||||||
boolean hasOverridden= false;
|
boolean hasOverridden= false;
|
||||||
for (ICPPMethod method : methods) {
|
for (ICPPMethod method : methods) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue