Skip to content

Commit

Permalink
Use unqualified name in defaultErrorMessage (#445)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ao-senXiong authored Apr 11, 2024
1 parent 436378a commit 71cee10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/checkers/inference/ExistentialVariableInserter.java
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ public void matchAndReplacePrimary(final AnnotatedTypeMirror typeUse, final Anno
}

@Override
public String defaultErrorMessage(org.checkerframework.framework.type.AnnotatedTypeMirror type1, org.checkerframework.framework.type.AnnotatedTypeMirror type2, Void aVoid) {
public String defaultErrorMessage(AnnotatedTypeMirror type1, AnnotatedTypeMirror type2, Void aVoid) {
return "Input types should have identical structures. Input types are limited to those types" +
"that can appear in a type variable bound:\n"
+ "type1=" + type1 + "\n"
Expand Down

0 comments on commit 71cee10

Please sign in to comment.