You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2018/05/21 15:23:30 UTC

groovy git commit: fix typo for delegated method

Repository: groovy
Updated Branches:
  refs/heads/master 434de3dd3 -> b0d79332a


fix typo for delegated method


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

Branch: refs/heads/master
Commit: b0d79332a3e897e821e62983ba38e5d926fa7cdd
Parents: 434de3d
Author: Daniel Sun <re...@hotmail.com>
Authored: Tue May 22 01:23:11 2018 +1000
Committer: Paul King <pa...@asert.com.au>
Committed: Tue May 22 01:23:11 2018 +1000

----------------------------------------------------------------------
 .../src/main/groovy/groovy/util/CliBuilder.groovy                  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/groovy/blob/b0d79332/subprojects/groovy-cli-commons/src/main/groovy/groovy/util/CliBuilder.groovy
----------------------------------------------------------------------
diff --git a/subprojects/groovy-cli-commons/src/main/groovy/groovy/util/CliBuilder.groovy b/subprojects/groovy-cli-commons/src/main/groovy/groovy/util/CliBuilder.groovy
index a7097db..58ec973 100644
--- a/subprojects/groovy-cli-commons/src/main/groovy/groovy/util/CliBuilder.groovy
+++ b/subprojects/groovy-cli-commons/src/main/groovy/groovy/util/CliBuilder.groovy
@@ -57,7 +57,7 @@ class CliBuilder {
      * Use groovy.cli.commons.CliBuilder if you need this feature.
      */
     @Deprecated
-    CommandLineParser setParser() {
+    CommandLineParser getParser() {
         delegate.getParser()
     }