1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-25 01:45:33 +02:00

Made couple frequently used methods final.

Change-Id: Ife83a856271a3aa6056f2fec8d02ab515611b4ab
This commit is contained in:
Sergey Prigogin 2016-03-16 19:58:05 -07:00
parent 4b31af20b1
commit ec7d830f4b

View file

@ -147,12 +147,12 @@ public class CPPASTName extends CPPASTNameBase implements ICPPASTCompletionConte
}
@Override
public char[] getSimpleID() {
public final char[] getSimpleID() {
return name;
}
@Override
public char[] getLookupKey() {
public final char[] getLookupKey() {
return name;
}