Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@ private int category(BodyDeclaration bodyDeclaration) {
}
case ASTNode.TYPE_DECLARATION:
case ASTNode.ENUM_DECLARATION:
case ASTNode.RECORD_DECLARATION:
case ASTNode.ANNOTATION_TYPE_DECLARATION:
return TYPE_INDEX;
case ASTNode.ENUM_CONSTANT_DECLARATION:
Expand Down Expand Up @@ -315,6 +316,7 @@ public int compare(BodyDeclaration bodyDeclaration1, BodyDeclaration bodyDeclara
}
case ASTNode.TYPE_DECLARATION:
case ASTNode.ENUM_DECLARATION:
case ASTNode.RECORD_DECLARATION:
case ASTNode.ANNOTATION_TYPE_DECLARATION: {
AbstractTypeDeclaration type1 = (AbstractTypeDeclaration) bodyDeclaration1;
AbstractTypeDeclaration type2 = (AbstractTypeDeclaration) bodyDeclaration2;
Expand Down
Loading