Skip to content

Commit b99f91d

Browse files
committed
final fields can only be assigned in the constructor (fixes joint groovy/grails build)
1 parent 12d39c8 commit b99f91d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/java/org/codehaus/groovy/grails/test/support/GrailsTestTypeSupport.groovy

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,17 +43,17 @@ abstract class GrailsTestTypeSupport implements GrailsTestType {
4343
/**
4444
* The test target patterns that should be used to filter the tests to run
4545
*/
46-
final GrailsTestTargetPattern[] testTargetPatterns
46+
GrailsTestTargetPattern[] testTargetPatterns
4747

4848
/**
4949
* The location where the type's source was compiled to
5050
*/
51-
final File compiledClassesDir
51+
File compiledClassesDir
5252

5353
/**
5454
* The binding from the build environment
5555
*/
56-
final Binding buildBinding
56+
Binding buildBinding
5757

5858
private ClassLoader testClassLoader
5959
private File sourceDir

0 commit comments

Comments
 (0)