Skip to content

Commit

Permalink
Missing implements on some types
Browse files Browse the repository at this point in the history
Signed-off-by: Rob Stryker <[email protected]>
  • Loading branch information
Rob Stryker committed Apr 11, 2024
1 parent 5b4592a commit 0b3969a
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,8 @@ private AbstractTypeDeclaration convertClassDecl(JCClassDecl javacClassDecl, AST
if( next instanceof JCFieldAccess jcfa ) {
String pack = jcfa.selected == null ? null : jcfa.selected.toString();
typeDeclaration.superInterfaces().add(convert(jcfa.name, pack));
} else if( next instanceof JCIdent jcid ) {
typeDeclaration.superInterfaces().add(convert(jcid.name, null));
}
}
}
Expand Down

0 comments on commit 0b3969a

Please sign in to comment.