Skip to content

Commit aa5aa15

Browse files
committed
Fixes extra whitespace which occurred after the identifier was printed in type variables. Looks like it wasn't using a special sentinel character used to indicate that whitespace should be skipped.
1 parent 4572c13 commit aa5aa15

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

codemodel/src/main/java/com/sun/codemodel/JGenerifiableImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public void declare( JFormatter f ) {
6363
if(i!=0) f.p(',');
6464
f.d(typeVariables.get(i));
6565
}
66-
f.p('>');
66+
f.p(JFormatter.CLOSE_TYPE_ARGS);
6767
}
6868
}
6969

0 commit comments

Comments
 (0)