Skip to content

Commit

Permalink
Merge branch '2.6.x' into 2.7.x
Browse files Browse the repository at this point in the history
Closes gh-32017
  • Loading branch information
wilkinsona committed Aug 9, 2022
2 parents 9e1a69e + 4a807eb commit ff348f4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
@@ -1,5 +1,5 @@
/*
* Copyright 2012-2021 the original author or authors.
* Copyright 2012-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -37,6 +37,8 @@
import org.codehaus.groovy.ast.stmt.ExpressionStatement;
import org.codehaus.groovy.control.SourceUnit;
import org.codehaus.groovy.control.io.ReaderSource;
import org.codehaus.groovy.syntax.Token;
import org.codehaus.groovy.syntax.Types;
import org.codehaus.groovy.transform.ASTTransformation;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
Expand Down Expand Up @@ -195,8 +197,8 @@ void transformationOfAnnotationOnLocalVariable() {
ClassNode classNode = new ClassNode("Test", 0, new ClassNode(Object.class));
this.moduleNode.addClass(classNode);

DeclarationExpression declarationExpression = new DeclarationExpression(new VariableExpression("test"), null,
new ConstantExpression("test"));
DeclarationExpression declarationExpression = new DeclarationExpression(new VariableExpression("test"),
new Token(Types.ASSIGN, "=", 1, 1), new ConstantExpression("test"));
declarationExpression.addAnnotation(this.grabAnnotation);

BlockStatement code = new BlockStatement(Arrays.asList(new ExpressionStatement(declarationExpression)),
Expand Down
2 changes: 1 addition & 1 deletion spring-boot-project/spring-boot-dependencies/build.gradle
Expand Up @@ -411,7 +411,7 @@ bom {
]
}
}
library("Groovy", "3.0.11") {
library("Groovy", "3.0.12") {
group("org.codehaus.groovy") {
imports = [
"groovy-bom"
Expand Down

0 comments on commit ff348f4

Please sign in to comment.