File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -160,7 +160,7 @@ abstract private class GeneratedType extends Type, GeneratedElement {
160
160
161
161
private string stubBaseTypesString ( ) {
162
162
if this instanceof Enum
163
- then result = ""
163
+ then result = " : " + this . ( Enum ) . getUnderlyingType ( ) . toStringWithTypes ( )
164
164
else
165
165
if exists ( this .getAnInterestingBaseType ( ) )
166
166
then
@@ -726,7 +726,7 @@ pragma[noinline]
726
726
private string stubEnumConstant ( EnumConstant ec , Assembly assembly ) {
727
727
ec instanceof GeneratedMember and
728
728
ec .getALocation ( ) = assembly and
729
- result = " " + escapeIfKeyword ( ec .getName ( ) ) + "= " + ec .getValue ( ) + ",\n"
729
+ result = " " + escapeIfKeyword ( ec .getName ( ) ) + " = " + ec .getValue ( ) + ",\n"
730
730
}
731
731
732
732
pragma [ noinline]
You can’t perform that action at this time.
0 commit comments