Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/builder/IncrementalImageBuilder.java')
-rw-r--r--org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/builder/IncrementalImageBuilder.java13
1 files changed, 7 insertions, 6 deletions
diff --git a/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/builder/IncrementalImageBuilder.java b/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/builder/IncrementalImageBuilder.java
index e3024277..653bb23f 100644
--- a/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/builder/IncrementalImageBuilder.java
+++ b/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/builder/IncrementalImageBuilder.java
@@ -1,10 +1,10 @@
/*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Common Public License v1.0
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/cpl-v10.html
- *
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
@@ -20,6 +20,7 @@ import org.eclipse.jdt.internal.compiler.classfmt.*;
import org.eclipse.jdt.internal.compiler.problem.*;
import org.eclipse.jdt.internal.compiler.util.SimpleLookupTable;
import org.eclipse.jdt.internal.compiler.util.SuffixConstants;
+import org.eclipse.jdt.internal.core.util.Messages;
import org.eclipse.jdt.internal.core.util.Util;
import java.io.*;
@@ -70,7 +71,7 @@ public boolean build(SimpleLookupTable deltas) {
try {
resetCollections();
- notifier.subTask(Util.bind("build.analyzingDeltas")); //$NON-NLS-1$
+ notifier.subTask(Messages.build_analyzingDeltas);
IResourceDelta sourceDelta = (IResourceDelta) deltas.get(javaBuilder.currentProject);
if (sourceDelta != null)
if (!findSourceFiles(sourceDelta)) return false;
@@ -89,7 +90,7 @@ public boolean build(SimpleLookupTable deltas) {
}
notifier.updateProgressDelta(0.10f);
- notifier.subTask(Util.bind("build.analyzingSources")); //$NON-NLS-1$
+ notifier.subTask(Messages.build_analyzingSources);
addAffectedSourceFiles();
notifier.updateProgressDelta(0.05f);

Back to the top