You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@groovy.apache.org by pa...@apache.org on 2015/05/19 07:11:00 UTC

[5/5] incubator-groovy git commit: GROOVY-7429: CLONE - upgrade Apache Commons CLI to version 1.3 - migrate OptionBuilder to Option.builder() (Closes #11)

GROOVY-7429: CLONE - upgrade Apache Commons CLI to version 1.3 - migrate OptionBuilder to Option.builder() (Closes #11)


Project: http://git-wip-us.apache.org/repos/asf/incubator-groovy/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-groovy/commit/5d36cef2
Tree: http://git-wip-us.apache.org/repos/asf/incubator-groovy/tree/5d36cef2
Diff: http://git-wip-us.apache.org/repos/asf/incubator-groovy/diff/5d36cef2

Branch: refs/heads/master
Commit: 5d36cef26ad989f9f43450fae8aacda6fc541900
Parents: 753afb2
Author: Paul King <pa...@asert.com.au>
Authored: Tue May 19 15:10:40 2015 +1000
Committer: Paul King <pa...@asert.com.au>
Committed: Tue May 19 15:10:40 2015 +1000

----------------------------------------------------------------------
 src/main/groovy/ui/GroovyMain.java | 2 --
 1 file changed, 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/5d36cef2/src/main/groovy/ui/GroovyMain.java
----------------------------------------------------------------------
diff --git a/src/main/groovy/ui/GroovyMain.java b/src/main/groovy/ui/GroovyMain.java
index 3ac93bc..294d91d 100644
--- a/src/main/groovy/ui/GroovyMain.java
+++ b/src/main/groovy/ui/GroovyMain.java
@@ -57,7 +57,6 @@ import java.util.regex.Pattern;
  * @author Jeremy Rayner
  * @author Yuri Schimke
  * @author Roshan Dawrani
- * @version $Revision$
  */
 public class GroovyMain {
 
@@ -174,7 +173,6 @@ public class GroovyMain {
      *
      * @return an options parser.
      */
-    @SuppressWarnings("static-access")
     private static Options buildOptions() {
         Options options = new Options();
         options.addOption(Option.builder("classpath").hasArg().argName("path").desc("Specify where to find the class files - must be first argument").build());