*** empty log message ***
diff --git a/model/org/eclipse/jdt/internal/core/builder/JavaBuilder.java b/model/org/eclipse/jdt/internal/core/builder/JavaBuilder.java
index bfe88fc..a07e501 100644
--- a/model/org/eclipse/jdt/internal/core/builder/JavaBuilder.java
+++ b/model/org/eclipse/jdt/internal/core/builder/JavaBuilder.java
@@ -109,9 +109,9 @@
 		ok = true;

 	} catch (CoreException e) {

 		if (DEBUG){

-			System.out.println("Builder handling CoreException");

+			System.out.println("Builder handling CoreException"); //$NON-NLS-1$

 			 e.printStackTrace();

-		}

+		}		

 		try {

 			IMarker marker = currentProject.createMarker(ProblemMarkerTag);

 			marker.setAttribute(IMarker.MESSAGE, Util.bind("build.inconsistentProject")); //$NON-NLS-1$

@@ -121,7 +121,7 @@
 		}

 	} catch (ImageBuilderInternalException e) {

 		if (DEBUG){

-			System.out.println("Builder handling ImageBuilderInternalException");

+			System.out.println("Builder handling ImageBuilderInternalException"); //$NON-NLS-1$

 			 e.printStackTrace();

 		}

 		try {

@@ -133,7 +133,7 @@
 		}

 	} catch (IncompleteClassPathException e) {

 		if (DEBUG){

-			System.out.println("Builder handling IncompleteClassPathException");

+			System.out.println("Builder handling IncompleteClassPathException"); //$NON-NLS-1$

 			 e.printStackTrace();

 		}

 		IMarker marker = currentProject.createMarker(ProblemMarkerTag);

@@ -141,7 +141,7 @@
 		marker.setAttribute(IMarker.SEVERITY, IMarker.SEVERITY_ERROR);

 	} catch (MissingSourceFileException e) {

 		if (DEBUG){

-			System.out.println("Builder handling MissingSourceFileException");

+			System.out.println("Builder handling MissingSourceFileException"); //$NON-NLS-1$

 			 e.printStackTrace();

 		}

 		removeProblemsFor(currentProject); // make this the only problem for this project