Skip to content

Commit

Permalink
Adapt to renaming UnnamedClass to ImplicitTypeDeclaration
Browse files Browse the repository at this point in the history
Signed-off-by: David Thompson <[email protected]>
  • Loading branch information
datho7561 authored and akurtakov committed Apr 3, 2024
1 parent a0babe0 commit 8aef553
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -165,12 +165,12 @@ public void endVisit(AbstractUnnamedTypeDeclaration node) {
}

@Override
public boolean visit(UnnamedClass node) {
public boolean visit(ImplicitTypeDeclaration node) {
return visit((AbstractUnnamedTypeDeclaration)node);
}

@Override
public void endVisit(UnnamedClass node) {
public void endVisit(ImplicitTypeDeclaration node) {
endVisit((AbstractUnnamedTypeDeclaration)node);
}

Expand Down

0 comments on commit 8aef553

Please sign in to comment.