1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Remove "getHelpId()"

This commit is contained in:
Oleg Krasilnikov 2008-05-13 11:15:03 +00:00
parent 76f792c6e4
commit b41f6b472d

View file

@ -548,7 +548,7 @@ public class DiscoveryTab extends AbstractCBuildPropertyTab implements IBuildInf
private boolean listEqual(List<String> l1, List<String> l2) {
if (l1 == null && l2 == null) return true;
if (l2 == null || l2 == null) return false;
if (l1 == null || l2 == null) return false;
if (l1.size() != l2.size()) return false;
// both lists have items in the same order ?
// since it's most probable, try it first.
@ -594,8 +594,4 @@ public class DiscoveryTab extends AbstractCBuildPropertyTab implements IBuildInf
updateData();
}
protected void updateButtons() {} // Do nothing. No buttons to update.
protected String getHelpContextId() {
return "proj_prop_discovery";
}
}