groovy git commit: GROOVY-7773: Enum constructor with value throws "unexpected token" error (closes #279)

2016-03-06 Thread paulk
Repository: groovy
Updated Branches:
  refs/heads/master c2d80bc8b -> d72b48118


GROOVY-7773: Enum constructor with value throws "unexpected token" error 
(closes #279)


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

Branch: refs/heads/master
Commit: d72b48118f9b0efb287119ca72662d739ebf0d0d
Parents: c2d80bc
Author: paulk 
Authored: Fri Mar 4 14:41:11 2016 +1000
Committer: paulk 
Committed: Mon Mar 7 16:46:58 2016 +1000

--
 src/main/org/codehaus/groovy/antlr/groovy.g |  4 ++--
 src/test/gls/enums/EnumTest.groovy  | 15 +++
 2 files changed, 17 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/groovy/blob/d72b4811/src/main/org/codehaus/groovy/antlr/groovy.g
--
diff --git a/src/main/org/codehaus/groovy/antlr/groovy.g 
b/src/main/org/codehaus/groovy/antlr/groovy.g
index 9ca3abb..72a748e 100644
--- a/src/main/org/codehaus/groovy/antlr/groovy.g
+++ b/src/main/org/codehaus/groovy/antlr/groovy.g
@@ -1192,12 +1192,12 @@ enumConstants
 :
 enumConstant
 (options {generateAmbigWarnings=false;} :
-(nls (RCURLY | classField)) => { break; /* leave ()* loop */ }
+(nls (SEMI! | RCURLY | classField)) => { break; /* leave ()* loop 
*/ }
 |   nls! COMMA!
 (
 (nls annotationsOpt IDENT) => nls! enumConstant
 |
-(nls (RCURLY | classField)) => { break; /* leave ()* loop */ }
+(nls (SEMI! | RCURLY | classField)) => { break; /* leave ()* 
loop */ }
 )
 )*
 ;

http://git-wip-us.apache.org/repos/asf/groovy/blob/d72b4811/src/test/gls/enums/EnumTest.groovy
--
diff --git a/src/test/gls/enums/EnumTest.groovy 
b/src/test/gls/enums/EnumTest.groovy
index 8f9c152..f858dfd 100644
--- a/src/test/gls/enums/EnumTest.groovy
+++ b/src/test/gls/enums/EnumTest.groovy
@@ -577,6 +577,21 @@ class EnumTest extends CompilableTestSupport {
 println Foonum.Y
 '''
 }
+
+void testEnumWithPropertiesAndDanglingComma_GROOVY_7773() {
+assertScript '''
+enum UsState {
+ID('Idaho'),
+IL('Illinois'),
+IN('Indiana'),
+;
+UsState( String value ) { this.value = value }
+private final String value
+String toString() { value }
+}
+assert UsState.ID.toString() == 'Idaho'
+'''
+}
 }
 
 enum UsCoin {



groovy git commit: GROOVY-7773: Enum constructor with value throws "unexpected token" error (closes #279)

2016-03-06 Thread paulk
Repository: groovy
Updated Branches:
  refs/heads/GROOVY_2_4_X c6438dd03 -> 1739cdc4c


GROOVY-7773: Enum constructor with value throws "unexpected token" error 
(closes #279)


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

Branch: refs/heads/GROOVY_2_4_X
Commit: 1739cdc4cfcde5c75fd5e4a8678db90c695af81c
Parents: c6438dd
Author: paulk 
Authored: Fri Mar 4 14:41:11 2016 +1000
Committer: paulk 
Committed: Mon Mar 7 16:48:09 2016 +1000

--
 src/main/org/codehaus/groovy/antlr/groovy.g |  4 ++--
 src/test/gls/enums/EnumTest.groovy  | 15 +++
 2 files changed, 17 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/groovy/blob/1739cdc4/src/main/org/codehaus/groovy/antlr/groovy.g
--
diff --git a/src/main/org/codehaus/groovy/antlr/groovy.g 
b/src/main/org/codehaus/groovy/antlr/groovy.g
index aadf519..0efbd4b 100644
--- a/src/main/org/codehaus/groovy/antlr/groovy.g
+++ b/src/main/org/codehaus/groovy/antlr/groovy.g
@@ -1230,12 +1230,12 @@ enumConstants
 :
 enumConstant
 (options {generateAmbigWarnings=false;} :
-(nls (RCURLY | classField)) => { break; /* leave ()* loop */ }
+(nls (SEMI! | RCURLY | classField)) => { break; /* leave ()* loop 
*/ }
 |   nls! COMMA!
 (
 (nls annotationsOpt IDENT) => nls! enumConstant
 |
-(nls (RCURLY | classField)) => { break; /* leave ()* loop */ }
+(nls (SEMI! | RCURLY | classField)) => { break; /* leave ()* 
loop */ }
 )
 )*
 ;

http://git-wip-us.apache.org/repos/asf/groovy/blob/1739cdc4/src/test/gls/enums/EnumTest.groovy
--
diff --git a/src/test/gls/enums/EnumTest.groovy 
b/src/test/gls/enums/EnumTest.groovy
index 8f9c152..f858dfd 100644
--- a/src/test/gls/enums/EnumTest.groovy
+++ b/src/test/gls/enums/EnumTest.groovy
@@ -577,6 +577,21 @@ class EnumTest extends CompilableTestSupport {
 println Foonum.Y
 '''
 }
+
+void testEnumWithPropertiesAndDanglingComma_GROOVY_7773() {
+assertScript '''
+enum UsState {
+ID('Idaho'),
+IL('Illinois'),
+IN('Indiana'),
+;
+UsState( String value ) { this.value = value }
+private final String value
+String toString() { value }
+}
+assert UsState.ID.toString() == 'Idaho'
+'''
+}
 }
 
 enum UsCoin {



groovy git commit: made GroovyClosureMethodsTest#testRunAfter more stable

2016-03-06 Thread pascalschumacher
Repository: groovy
Updated Branches:
  refs/heads/master b8514f1d6 -> c2d80bc8b


made GroovyClosureMethodsTest#testRunAfter more stable


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

Branch: refs/heads/master
Commit: c2d80bc8b1bf84575cf03710a1ead6ca21037f39
Parents: b8514f1
Author: pascalschumacher 
Authored: Sun Mar 6 20:36:39 2016 +0100
Committer: pascalschumacher 
Committed: Sun Mar 6 20:36:39 2016 +0100

--
 src/test/groovy/GroovyClosureMethodsTest.groovy | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/groovy/blob/c2d80bc8/src/test/groovy/GroovyClosureMethodsTest.groovy
--
diff --git a/src/test/groovy/GroovyClosureMethodsTest.groovy 
b/src/test/groovy/GroovyClosureMethodsTest.groovy
index 1019f87..937798b 100644
--- a/src/test/groovy/GroovyClosureMethodsTest.groovy
+++ b/src/test/groovy/GroovyClosureMethodsTest.groovy
@@ -169,7 +169,7 @@ class GroovyClosureMethodsTest extends GroovyTestCase {
 latch.countDown()
 }
 assert latch.getCount() == 1
-latch.await(1000L, TimeUnit.MILLISECONDS)
+latch.await(2000L, TimeUnit.MILLISECONDS)
 assert latch.getCount() == 0
 }
 



groovy git commit: made GroovyClosureMethodsTest#testRunAfter more stable

2016-03-06 Thread pascalschumacher
Repository: groovy
Updated Branches:
  refs/heads/GROOVY_2_4_X ce22091dd -> c6438dd03


made GroovyClosureMethodsTest#testRunAfter more stable


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

Branch: refs/heads/GROOVY_2_4_X
Commit: c6438dd034b844071a3a5266317c702e19f2c8c6
Parents: ce22091
Author: pascalschumacher 
Authored: Sun Mar 6 20:36:39 2016 +0100
Committer: pascalschumacher 
Committed: Sun Mar 6 20:37:22 2016 +0100

--
 src/test/groovy/GroovyClosureMethodsTest.groovy | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/groovy/blob/c6438dd0/src/test/groovy/GroovyClosureMethodsTest.groovy
--
diff --git a/src/test/groovy/GroovyClosureMethodsTest.groovy 
b/src/test/groovy/GroovyClosureMethodsTest.groovy
index aee34f0..063aeed 100644
--- a/src/test/groovy/GroovyClosureMethodsTest.groovy
+++ b/src/test/groovy/GroovyClosureMethodsTest.groovy
@@ -169,7 +169,7 @@ class GroovyClosureMethodsTest extends GroovyTestCase {
 latch.countDown()
 }
 assert latch.getCount() == 1
-latch.await(1000L, TimeUnit.MILLISECONDS)
+latch.await(2000L, TimeUnit.MILLISECONDS)
 assert latch.getCount() == 0
 }
 



groovy git commit: Fixing squid:S1871 - Two branches in the same conditional structure should not have exactly the same implementation (closes #232)

2016-03-06 Thread pascalschumacher
Repository: groovy
Updated Branches:
  refs/heads/GROOVY_2_4_X 64122b61b -> ce22091dd


Fixing squid:S1871 - Two branches in the same conditional structure should not 
have exactly the same implementation (closes #232)


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

Branch: refs/heads/GROOVY_2_4_X
Commit: ce22091dda4ac3aa90fd9e3e192f9505c8832b14
Parents: 64122b6
Author: Kirill Vlasov 
Authored: Wed Dec 30 10:58:47 2015 +0500
Committer: pascalschumacher 
Committed: Sun Mar 6 20:33:54 2016 +0100

--
 .../org/codehaus/groovy/antlr/java/Java2GroovyConverter.java   | 4 +---
 src/main/org/codehaus/groovy/classgen/asm/OperandStack.java| 6 ++
 .../groovy/classgen/asm/sc/StaticInvocationWriter.java | 2 --
 src/main/org/codehaus/groovy/control/CompilationUnit.java  | 4 +---
 .../groovy/tools/groovydoc/SimpleGroovyClassDocAssembler.java  | 5 +
 5 files changed, 5 insertions(+), 16 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/groovy/blob/ce22091d/src/main/org/codehaus/groovy/antlr/java/Java2GroovyConverter.java
--
diff --git a/src/main/org/codehaus/groovy/antlr/java/Java2GroovyConverter.java 
b/src/main/org/codehaus/groovy/antlr/java/Java2GroovyConverter.java
index 012e7d4..def8da5 100644
--- a/src/main/org/codehaus/groovy/antlr/java/Java2GroovyConverter.java
+++ b/src/main/org/codehaus/groovy/antlr/java/Java2GroovyConverter.java
@@ -214,10 +214,8 @@ public class Java2GroovyConverter extends VisitorAdapter{
 // as groovy AST doesn't expect to have them
 if (t.getType() == GroovyTokenTypes.STRING_LITERAL) {
 String text = t.getText();
-if (isSingleQuoted(text)) {
+if (isSingleQuoted(text) || isDoubleQuoted(text)) {
 t.setText(text.substring(1, text.length() - 1)); // chop 
off the single quotes at start and end
-} else if (isDoubleQuoted(text)) {
-t.setText(text.substring(1, text.length() - 1)); // chop 
off the double quotes at start and end
 }
 }
 }

http://git-wip-us.apache.org/repos/asf/groovy/blob/ce22091d/src/main/org/codehaus/groovy/classgen/asm/OperandStack.java
--
diff --git a/src/main/org/codehaus/groovy/classgen/asm/OperandStack.java 
b/src/main/org/codehaus/groovy/classgen/asm/OperandStack.java
index 9ea523c..88ffd51 100644
--- a/src/main/org/codehaus/groovy/classgen/asm/OperandStack.java
+++ b/src/main/org/codehaus/groovy/classgen/asm/OperandStack.java
@@ -336,14 +336,12 @@ public class OperandStack {
 return;
 }
 box();
-} else if (primTop) {
-// top is primitive, target is not
-// so box and do groovy cast
-
controller.getInvocationWriter().castToNonPrimitiveIfNecessary(top, targetType);
 } else if (primTarget) {
 // top is not primitive so unbox
 // leave that BH#doCast later
 } else {
+// top might be primitive, target is not
+// so let invocation writer box if needed and do groovy cast 
otherwise
 
controller.getInvocationWriter().castToNonPrimitiveIfNecessary(top, targetType);
 }
 

http://git-wip-us.apache.org/repos/asf/groovy/blob/ce22091d/src/main/org/codehaus/groovy/classgen/asm/sc/StaticInvocationWriter.java
--
diff --git 
a/src/main/org/codehaus/groovy/classgen/asm/sc/StaticInvocationWriter.java 
b/src/main/org/codehaus/groovy/classgen/asm/sc/StaticInvocationWriter.java
index df44e84..4c9b991 100644
--- a/src/main/org/codehaus/groovy/classgen/asm/sc/StaticInvocationWriter.java
+++ b/src/main/org/codehaus/groovy/classgen/asm/sc/StaticInvocationWriter.java
@@ -591,8 +591,6 @@ public class StaticInvocationWriter extends 
InvocationWriter {
 mv.visitInsn(FCONST_0);
 } else if (ClassHelper.double_TYPE.equals(type)) {
 mv.visitInsn(DCONST_0);
-} else if (ClassHelper.boolean_TYPE.equals(type)) {
-mv.visitInsn(ICONST_0);
 } else {
 mv.visitLdcInsn(0);
 }

http://git-wip-us.apache.org/repos/asf/groovy/blob/ce22091d/src/main/org/codehaus/groovy/control/CompilationUnit.java
--
diff --git a/src/main/org/codehaus/groovy/control/CompilationUnit.java 
b/src/main/org/codehaus/groovy/control/CompilationUnit.java
index d4f0315..2f80369 100644
--- a/src/main/or

groovy git commit: Fixing squid:S1871 - Two branches in the same conditional structure should not have exactly the same implementation (closes #232)

2016-03-06 Thread pascalschumacher
Repository: groovy
Updated Branches:
  refs/heads/master 9c2c391a8 -> b8514f1d6


Fixing squid:S1871 - Two branches in the same conditional structure should not 
have exactly the same implementation (closes #232)


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

Branch: refs/heads/master
Commit: b8514f1d678145416f4169aefb7331454c002ea8
Parents: 9c2c391
Author: Kirill Vlasov 
Authored: Wed Dec 30 10:58:47 2015 +0500
Committer: pascalschumacher 
Committed: Sun Mar 6 20:31:18 2016 +0100

--
 .../org/codehaus/groovy/antlr/java/Java2GroovyConverter.java   | 4 +---
 src/main/org/codehaus/groovy/classgen/asm/OperandStack.java| 6 ++
 .../groovy/classgen/asm/sc/StaticInvocationWriter.java | 2 --
 src/main/org/codehaus/groovy/control/CompilationUnit.java  | 4 +---
 .../groovy/tools/groovydoc/SimpleGroovyClassDocAssembler.java  | 5 +
 5 files changed, 5 insertions(+), 16 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/groovy/blob/b8514f1d/src/main/org/codehaus/groovy/antlr/java/Java2GroovyConverter.java
--
diff --git a/src/main/org/codehaus/groovy/antlr/java/Java2GroovyConverter.java 
b/src/main/org/codehaus/groovy/antlr/java/Java2GroovyConverter.java
index 012e7d4..def8da5 100644
--- a/src/main/org/codehaus/groovy/antlr/java/Java2GroovyConverter.java
+++ b/src/main/org/codehaus/groovy/antlr/java/Java2GroovyConverter.java
@@ -214,10 +214,8 @@ public class Java2GroovyConverter extends VisitorAdapter{
 // as groovy AST doesn't expect to have them
 if (t.getType() == GroovyTokenTypes.STRING_LITERAL) {
 String text = t.getText();
-if (isSingleQuoted(text)) {
+if (isSingleQuoted(text) || isDoubleQuoted(text)) {
 t.setText(text.substring(1, text.length() - 1)); // chop 
off the single quotes at start and end
-} else if (isDoubleQuoted(text)) {
-t.setText(text.substring(1, text.length() - 1)); // chop 
off the double quotes at start and end
 }
 }
 }

http://git-wip-us.apache.org/repos/asf/groovy/blob/b8514f1d/src/main/org/codehaus/groovy/classgen/asm/OperandStack.java
--
diff --git a/src/main/org/codehaus/groovy/classgen/asm/OperandStack.java 
b/src/main/org/codehaus/groovy/classgen/asm/OperandStack.java
index 9ea523c..88ffd51 100644
--- a/src/main/org/codehaus/groovy/classgen/asm/OperandStack.java
+++ b/src/main/org/codehaus/groovy/classgen/asm/OperandStack.java
@@ -336,14 +336,12 @@ public class OperandStack {
 return;
 }
 box();
-} else if (primTop) {
-// top is primitive, target is not
-// so box and do groovy cast
-
controller.getInvocationWriter().castToNonPrimitiveIfNecessary(top, targetType);
 } else if (primTarget) {
 // top is not primitive so unbox
 // leave that BH#doCast later
 } else {
+// top might be primitive, target is not
+// so let invocation writer box if needed and do groovy cast 
otherwise
 
controller.getInvocationWriter().castToNonPrimitiveIfNecessary(top, targetType);
 }
 

http://git-wip-us.apache.org/repos/asf/groovy/blob/b8514f1d/src/main/org/codehaus/groovy/classgen/asm/sc/StaticInvocationWriter.java
--
diff --git 
a/src/main/org/codehaus/groovy/classgen/asm/sc/StaticInvocationWriter.java 
b/src/main/org/codehaus/groovy/classgen/asm/sc/StaticInvocationWriter.java
index 6b824fd..bbc86ce 100644
--- a/src/main/org/codehaus/groovy/classgen/asm/sc/StaticInvocationWriter.java
+++ b/src/main/org/codehaus/groovy/classgen/asm/sc/StaticInvocationWriter.java
@@ -610,8 +610,6 @@ public class StaticInvocationWriter extends 
InvocationWriter {
 mv.visitInsn(FCONST_0);
 } else if (ClassHelper.double_TYPE.equals(type)) {
 mv.visitInsn(DCONST_0);
-} else if (ClassHelper.boolean_TYPE.equals(type)) {
-mv.visitInsn(ICONST_0);
 } else {
 mv.visitLdcInsn(0);
 }

http://git-wip-us.apache.org/repos/asf/groovy/blob/b8514f1d/src/main/org/codehaus/groovy/control/CompilationUnit.java
--
diff --git a/src/main/org/codehaus/groovy/control/CompilationUnit.java 
b/src/main/org/codehaus/groovy/control/CompilationUnit.java
index d4f0315..2f80369 100644
--- a/src/main/org/codehaus/g

groovy git commit: avoid rebuilding the bootstrapJar (and therefore core groovy classes as well) when just changing tests (closes #283)

2016-03-06 Thread pascalschumacher
Repository: groovy
Updated Branches:
  refs/heads/GROOVY_2_4_X 79e0b78cd -> 64122b61b


avoid rebuilding the bootstrapJar (and therefore core groovy classes as well) 
when just changing tests (closes #283)


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

Branch: refs/heads/GROOVY_2_4_X
Commit: 64122b61b0d99ae858d10f6d89ae998fdfc0390c
Parents: 79e0b78
Author: oreissig 
Authored: Sun Mar 6 17:53:25 2016 +0100
Committer: pascalschumacher 
Committed: Sun Mar 6 19:31:52 2016 +0100

--
 build.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/groovy/blob/64122b61/build.gradle
--
diff --git a/build.gradle b/build.gradle
index 951c834..393d150 100644
--- a/build.gradle
+++ b/build.gradle
@@ -391,7 +391,7 @@ task bootstrapJar {
 )
 }
 inputs.property('indy', useIndy())
-inputs.files fileTree('src')
+inputs.files sourceSets.main.allJava
 outputs.file archivePath
 }
 



groovy git commit: avoid rebuilding the bootstrapJar (and therefore core groovy classes as well) when just changing tests (closes #283)

2016-03-06 Thread pascalschumacher
Repository: groovy
Updated Branches:
  refs/heads/master b4f2745a0 -> 9c2c391a8


avoid rebuilding the bootstrapJar (and therefore core groovy classes as well) 
when just changing tests (closes #283)


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

Branch: refs/heads/master
Commit: 9c2c391a8a69eb05962c79d8318b7faf8eb82fd5
Parents: b4f2745
Author: oreissig 
Authored: Sun Mar 6 17:53:25 2016 +0100
Committer: pascalschumacher 
Committed: Sun Mar 6 19:09:18 2016 +0100

--
 build.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/groovy/blob/9c2c391a/build.gradle
--
diff --git a/build.gradle b/build.gradle
index 86d96bc..4c2bf0b 100644
--- a/build.gradle
+++ b/build.gradle
@@ -397,7 +397,7 @@ task bootstrapJar {
 )
 }
 inputs.property('indy', useIndy())
-inputs.files fileTree('src')
+inputs.files sourceSets.main.allJava
 outputs.file archivePath
 }
 



groovy git commit: LoaderConfiguration: Fix minor javadoc typo (closes #281)

2016-03-06 Thread pascalschumacher
Repository: groovy
Updated Branches:
  refs/heads/GROOVY_2_4_X 18d19f9b9 -> 79e0b78cd


LoaderConfiguration: Fix minor javadoc typo (closes #281)


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

Branch: refs/heads/GROOVY_2_4_X
Commit: 79e0b78cdd32be2bc1f7fca96eff71d2693858e5
Parents: 18d19f9
Author: Jake Gage 
Authored: Sat Mar 5 16:36:00 2016 -0600
Committer: pascalschumacher 
Committed: Sun Mar 6 10:02:18 2016 +0100

--
 src/main/org/codehaus/groovy/tools/LoaderConfiguration.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/groovy/blob/79e0b78c/src/main/org/codehaus/groovy/tools/LoaderConfiguration.java
--
diff --git a/src/main/org/codehaus/groovy/tools/LoaderConfiguration.java 
b/src/main/org/codehaus/groovy/tools/LoaderConfiguration.java
index c58ac7f..56ee2ca 100644
--- a/src/main/org/codehaus/groovy/tools/LoaderConfiguration.java
+++ b/src/main/org/codehaus/groovy/tools/LoaderConfiguration.java
@@ -32,7 +32,7 @@ import java.util.regex.Pattern;
 
 /**
  * Class used to configure a RootLoader from a stream or by using
- * it's methods.
+ * its methods.
  * 
  * The stream can be for example a FileInputStream from a file with
  * the following format:



groovy git commit: LoaderConfiguration: Fix minor javadoc typo (closes #281)

2016-03-06 Thread pascalschumacher
Repository: groovy
Updated Branches:
  refs/heads/master c80a30777 -> b4f2745a0


LoaderConfiguration: Fix minor javadoc typo (closes #281)


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

Branch: refs/heads/master
Commit: b4f2745a0fa4db49d2780cef877505b6df5f712d
Parents: c80a307
Author: Jake Gage 
Authored: Sat Mar 5 16:36:00 2016 -0600
Committer: pascalschumacher 
Committed: Sun Mar 6 10:00:21 2016 +0100

--
 src/main/org/codehaus/groovy/tools/LoaderConfiguration.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/groovy/blob/b4f2745a/src/main/org/codehaus/groovy/tools/LoaderConfiguration.java
--
diff --git a/src/main/org/codehaus/groovy/tools/LoaderConfiguration.java 
b/src/main/org/codehaus/groovy/tools/LoaderConfiguration.java
index c58ac7f..56ee2ca 100644
--- a/src/main/org/codehaus/groovy/tools/LoaderConfiguration.java
+++ b/src/main/org/codehaus/groovy/tools/LoaderConfiguration.java
@@ -32,7 +32,7 @@ import java.util.regex.Pattern;
 
 /**
  * Class used to configure a RootLoader from a stream or by using
- * it's methods.
+ * its methods.
  * 
  * The stream can be for example a FileInputStream from a file with
  * the following format: