Skip to content

Commit

Permalink
Worked around phax#41.
Browse files Browse the repository at this point in the history
  • Loading branch information
mcoblenz committed Apr 7, 2017
1 parent 19ce1df commit e3fe69c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/helger/jcodemodel/JEnumConstant.java
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ public void declare (@Nonnull final JFormatter f)
public void generate (@Nonnull final JFormatter f)
{
// Type must not be emitted - see issue #41
if (false)
if (true)
f.type (m_aType).print ('.').print (m_sName);
else
f.print (m_sName);
Expand Down

0 comments on commit e3fe69c

Please sign in to comment.