Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Herrmann2014-12-13 19:39:23 +0000
committerStephan Herrmann2014-12-13 19:39:23 +0000
commit37fc84cbf226eac5dc0e3efc341e7b92b7be7f03 (patch)
treef5dca2086cb6382133a12df8f2e21904b4d5bfca
parent6d32269c0e7c7d4699f6b36274a70f2a39d52d6e (diff)
downloadorg.eclipse.objectteams-37fc84cbf226eac5dc0e3efc341e7b92b7be7f03.tar.gz
org.eclipse.objectteams-37fc84cbf226eac5dc0e3efc341e7b92b7be7f03.tar.xz
org.eclipse.objectteams-37fc84cbf226eac5dc0e3efc341e7b92b7be7f03.zip
Fix white case deviation, regression in BatchCompilerTest
-rw-r--r--org.eclipse.jdt.core/batch/org/eclipse/jdt/internal/compiler/batch/messages.properties10
1 files changed, 5 insertions, 5 deletions
diff --git a/org.eclipse.jdt.core/batch/org/eclipse/jdt/internal/compiler/batch/messages.properties b/org.eclipse.jdt.core/batch/org/eclipse/jdt/internal/compiler/batch/messages.properties
index bc1e56db5..f79f2525e 100644
--- a/org.eclipse.jdt.core/batch/org/eclipse/jdt/internal/compiler/batch/messages.properties
+++ b/org.eclipse.jdt.core/batch/org/eclipse/jdt/internal/compiler/batch/messages.properties
@@ -7,8 +7,8 @@
#
# Contributors:
# IBM Corporation - initial API and implementation
-# Benjamin Muskalla - Contribution for bug 239066
-# Stephan Herrmann - Contributions for
+# Benjamin Muskalla - Contribution for bug 239066
+# Stephan Herrmann - Contributions for
# bug 236385 - [compiler] Warn for potential programming problem if an object is created but not used
# bug 295551 - Add option to automatically promote all warnings to errors
# bug 359721 - [options] add command line option for new warning token "resource"
@@ -120,8 +120,8 @@ configure.invalidNullAnnot = Token {0} is not in the expected format "nullAnnot(
### requestor
requestor.error = {0}. ERROR in {1}
requestor.warning = {0}. WARNING in {1}
-requestor.extraerror = {0}. Error:
-requestor.extrawarning = {0}. Warning:
+requestor.extraerror = {0}. ERROR:
+requestor.extrawarning = {0}. WARNING:
requestor.notRetrieveErrorMessage = Cannot retrieve the error message for {0}
requestor.noFileNameSpecified = (original file name is not available)
@@ -289,7 +289,7 @@ misc.usage.warn = {1} {2}\n\
{3}\n\
\ \n\
\ Warning options:\n\
-\ -deprecation + deprecation outside deprecated code\n\
+\ -deprecation + deprecation outside deprecated code\n\
\ -nowarn -warn:none disable all warnings\n\
\ -nowarn:[<directories separated by {0}>]\n\
\ specify directories from which optional problems should\n\

Back to the top