mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 17:56:01 +02:00
Method addTc() made public to make testing easier.
This commit is contained in:
parent
fe49cf75df
commit
b632769b66
2 changed files with 2 additions and 2 deletions
|
@ -119,7 +119,7 @@ public class CWizardHandler implements ICWizardHandler {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void addTc(IToolChain tc) {
|
public void addTc(IToolChain tc) {
|
||||||
if (tc.isAbstract() || tc.isSystemObject()) return;
|
if (tc.isAbstract() || tc.isSystemObject()) return;
|
||||||
IConfiguration[] cfgs = null;
|
IConfiguration[] cfgs = null;
|
||||||
// New style managed project type. Configurations are referenced via propertyId.
|
// New style managed project type. Configurations are referenced via propertyId.
|
||||||
|
|
|
@ -32,7 +32,7 @@ public class StdProjectTypeHandler extends CWizardHandler {
|
||||||
super(_name, null, _image, p, null);
|
super(_name, null, _image, p, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void addTc(IToolChain tc) {
|
public void addTc(IToolChain tc) {
|
||||||
if (tc == null) {
|
if (tc == null) {
|
||||||
tcs.put(IDEWorkbenchMessages.getString("StdProjectTypeHandler.0"), null); //$NON-NLS-1$
|
tcs.put(IDEWorkbenchMessages.getString("StdProjectTypeHandler.0"), null); //$NON-NLS-1$
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Add table
Reference in a new issue