Skip to content

Commit

Permalink
Update open-rewrite to 8.13.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Col-E committed Jan 14, 2024
1 parent cd4d802 commit c4635db
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ project.ext {

mockito = 'org.mockito:mockito-core:5.6.0'

openrewrite = 'org.openrewrite:rewrite-java-17:8.7.4'
openrewrite = 'org.openrewrite:rewrite-java-17:8.13.3'

procyon = "org.bitbucket.mstrobel:procyon-compilertools:0.6.0"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,13 @@ public J.Import visitImport(@Nonnull J.Import impoort, @Nonnull ExecutionContext
return impoort;
}

@Nonnull
@Override
public J.ArrayType visitArrayType(@Nonnull J.ArrayType array, @Nonnull ExecutionContext ctx) {
array = array.withElementType(visitIdentifier((J.Identifier) array.getElementType(), ctx));
return super.visitArrayType(array, ctx);
}

@Nonnull
@Override
public J.Identifier visitIdentifier(@Nonnull J.Identifier identifier, @Nonnull ExecutionContext ctx) {
Expand Down

0 comments on commit c4635db

Please sign in to comment.