Skip to content

Commit

Permalink
fix a minor copy-paste mistake from earlier commit
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Jul 31, 2019
1 parent fca7c57 commit fe5000e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,15 @@ public StringBuilder getGenericSignature(StringBuilder sb) {
if (_referencedType != null) {
return _referencedType.getGenericSignature(sb);
}
return _referencedType.getGenericSignature(sb);
return sb.append("?");
}

@Override
public StringBuilder getErasedSignature(StringBuilder sb) {
if (_referencedType != null) {
return _referencedType.getErasedSignature(sb);
}
return _referencedType.getErasedSignature(sb);
return sb;
}

@Override
Expand Down

0 comments on commit fe5000e

Please sign in to comment.