Fixed bug where location appearing twice in symbol dialogue

This commit is contained in:
nsingh
2017-11-22 11:43:40 -08:00
parent 6c062d18ee
commit 8c956bf962

View File

@@ -114,18 +114,6 @@ public class GotoSymbolDialog extends PopupDialog {
}
return s;
}
@Override
public String getText(Object element) {
String s = super.getText(element);
if (element instanceof SymbolInformation) {
String locationText = getSymbolLocationText((SymbolInformation) element);
if (locationText != null) {
s+=locationText;
}
}
return s;
}
@Override
public void dispose() {