This is an automated email from the ASF dual-hosted git repository.

geertjan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-netbeans.git


The following commit(s) were added to refs/heads/master by this push:
     new 0561334  Adjusting should-stop parameter to javac to recent changes. 
(#489)
0561334 is described below

commit 056133456ef0326c031fede2080325d3da8395fd
Author: Jan Lahoda <lah...@gmail.com>
AuthorDate: Tue Apr 10 14:31:24 2018 +0200

    Adjusting should-stop parameter to javac to recent changes. (#489)
---
 .../src/org/netbeans/modules/java/source/parsing/JavacParser.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/java.source.base/src/org/netbeans/modules/java/source/parsing/JavacParser.java
 
b/java.source.base/src/org/netbeans/modules/java/source/parsing/JavacParser.java
index 8d5e178..78dc9c1 100644
--- 
a/java.source.base/src/org/netbeans/modules/java/source/parsing/JavacParser.java
+++ 
b/java.source.base/src/org/netbeans/modules/java/source/parsing/JavacParser.java
@@ -820,7 +820,7 @@ public class JavacParser extends Parser {
         options.add("-XDsave-parameter-names");   // NOI18N, javac runs inside 
the IDE
         options.add("-parameters");   // NOI18N, save and read parameter names
         options.add("-XDsuppressAbortOnBadClassFile");   // NOI18N, when a 
class file cannot be read, produce an error type instead of failing with an 
exception
-        options.add("--should-stop:at=GENERATE");   // NOI18N, parsing should 
not stop in phase where an error is found
+        options.add("-XDshould-stop.at=GENERATE");   // NOI18N, parsing should 
not stop in phase where an error is found
         options.add("-g:source"); // NOI18N, Make the compiler to maintian 
source file info
         options.add("-g:lines"); // NOI18N, Make the compiler to maintain line 
table
         options.add("-g:vars");  // NOI18N, Make the compiler to maintain 
local variables table

-- 
To stop receiving notification emails like this one, please contact
geert...@apache.org.

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to