Skip to content

Commit

Permalink
Fix InterfaceUtils
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasstamann committed Oct 7, 2023
1 parent 8a07e39 commit b99dace
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ TypeMirrorWrapper getTypeMirrorWithReplacedTypeVars() {
if (isTypeVar() && typeVarMap.containsKey(getTypeVar().toString())) {
return typeVarMap.get(getTypeVar().toString());
} else {
return this;
return TypeMirrorWrapper.wrap(this.unwrap());
}
}

Expand Down

0 comments on commit b99dace

Please sign in to comment.