1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-30 12:25:35 +02:00

Missed an externalizable string in trace message

This commit is contained in:
Sean Evoy 2004-06-11 17:56:54 +00:00
parent 79438408a9
commit 81859be811

View file

@ -38,7 +38,10 @@ public class ManagedBuildPathEntryContainerInitializer extends PathEntryContaine
*/
public void initialize(IPath containerPath, ICProject project) throws CoreException {
if (VERBOSE) {
System.out.println(TRACE_HEADER + project.getProject().getName() + TRACE_FOOTER + "Initializing path entry container");
System.out.println(TRACE_HEADER +
project.getProject().getName() +
TRACE_FOOTER +
"Initializing path entry container"); //$NON-NLS-1$
}
CoreModel.getDefault().setPathEntryContainer(new ICProject[]{project}, new ManagedBuildCPathEntryContainer(project.getProject()), null);
}