mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Remove "getHelpId()"
This commit is contained in:
parent
76f792c6e4
commit
b41f6b472d
1 changed files with 1 additions and 5 deletions
|
@ -548,7 +548,7 @@ public class DiscoveryTab extends AbstractCBuildPropertyTab implements IBuildInf
|
||||||
|
|
||||||
private boolean listEqual(List<String> l1, List<String> l2) {
|
private boolean listEqual(List<String> l1, List<String> l2) {
|
||||||
if (l1 == null && l2 == null) return true;
|
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;
|
if (l1.size() != l2.size()) return false;
|
||||||
// both lists have items in the same order ?
|
// both lists have items in the same order ?
|
||||||
// since it's most probable, try it first.
|
// since it's most probable, try it first.
|
||||||
|
@ -594,8 +594,4 @@ public class DiscoveryTab extends AbstractCBuildPropertyTab implements IBuildInf
|
||||||
updateData();
|
updateData();
|
||||||
}
|
}
|
||||||
protected void updateButtons() {} // Do nothing. No buttons to update.
|
protected void updateButtons() {} // Do nothing. No buttons to update.
|
||||||
|
|
||||||
protected String getHelpContextId() {
|
|
||||||
return "proj_prop_discovery";
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue