View | Details | Raw Unified | Return to bug 296998 | Differences between
and this patch

Collapse All | Expand All

(-)batch/org/eclipse/jdt/internal/compiler/batch/Main.java (+5 lines)
Lines 2028-2033 Link Here
2028
					this.proceedOnError = true;
2028
					this.proceedOnError = true;
2029
					continue;
2029
					continue;
2030
				}
2030
				}
2031
				if (currentArg.equals("-nonFatalError")) { //$NON-NLS-1$
2032
					mode = DEFAULT;
2033
					this.options.put(CompilerOptions.OPTION_FatalOptionalError, CompilerOptions.DISABLED);
2034
					continue;
2035
				}
2031
				if (currentArg.equals("-time")) { //$NON-NLS-1$
2036
				if (currentArg.equals("-time")) { //$NON-NLS-1$
2032
					mode = DEFAULT;
2037
					mode = DEFAULT;
2033
					this.timing = TIMING_ENABLED;
2038
					this.timing = TIMING_ENABLED;
(-)batch/org/eclipse/jdt/internal/compiler/batch/messages.properties (+1 lines)
Lines 217-222 Link Here
217
\                       the log will be a xml file.\n\
217
\                       the log will be a xml file.\n\
218
\    -proceedOnError    do not stop at first error, dumping class files with\n\
218
\    -proceedOnError    do not stop at first error, dumping class files with\n\
219
\                       problem methods\n\
219
\                       problem methods\n\
220
\    -nonFatalError     treat all optional errors as non fatal\n\
220
\    -verbose           enable verbose output\n\
221
\    -verbose           enable verbose output\n\
221
\    -referenceInfo     compute reference info\n\
222
\    -referenceInfo     compute reference info\n\
222
\    -progress          show progress (only in -log mode)\n\
223
\    -progress          show progress (only in -log mode)\n\
(-)src/org/eclipse/jdt/core/tests/compiler/regression/BatchCompilerTest.java (+1 lines)
Lines 1586-1591 Link Here
1586
        "                       the log will be a xml file.\n" +
1586
        "                       the log will be a xml file.\n" +
1587
        "    -proceedOnError    do not stop at first error, dumping class files with\n" +
1587
        "    -proceedOnError    do not stop at first error, dumping class files with\n" +
1588
        "                       problem methods\n" +
1588
        "                       problem methods\n" +
1589
        "    -nonFatalError     treat all optional errors as non fatal\n" + 
1589
        "    -verbose           enable verbose output\n" +
1590
        "    -verbose           enable verbose output\n" +
1590
        "    -referenceInfo     compute reference info\n" +
1591
        "    -referenceInfo     compute reference info\n" +
1591
        "    -progress          show progress (only in -log mode)\n" +
1592
        "    -progress          show progress (only in -log mode)\n" +

Return to bug 296998