mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-24 01:15:29 +02:00
Bug 561635 - Clean-up CDT Activator code
Remove misplaced usage of "org.eclipse.tools.templates.ui.internal.Activator" Change-Id: Iaeb42729366f12a6329c4b8ca2b062ab7a169472 Signed-off-by: Alexander Fedorov <alexander.fedorov@arsysop.ru>
This commit is contained in:
parent
c42ebba662
commit
e730f8b8d3
1 changed files with 1 additions and 2 deletions
|
@ -54,7 +54,6 @@ import org.eclipse.swt.widgets.Group;
|
|||
import org.eclipse.swt.widgets.Label;
|
||||
import org.eclipse.swt.widgets.Table;
|
||||
import org.eclipse.swt.widgets.TableColumn;
|
||||
import org.eclipse.tools.templates.ui.internal.Activator;
|
||||
import org.eclipse.ui.IWorkbench;
|
||||
import org.eclipse.ui.IWorkbenchPreferencePage;
|
||||
|
||||
|
@ -91,7 +90,7 @@ public class ToolChainPreferencePage extends PreferencePage implements IWorkbenc
|
|||
try {
|
||||
toolChains = new ArrayList<>(manager.getAllToolChains());
|
||||
} catch (CoreException e) {
|
||||
Activator.log(e);
|
||||
Platform.getLog(getClass()).log(e.getStatus());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue