You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@wing328 I think given that "__" is a valid identifier in Java, just like "o1" or "user", we shouldn't modify it just for readability in a one-off case.
I agree that we need to deal with other symbols though. And I think what the code does right now (e.g. replacing those symbols with "_") is simple and reasonable.
@qtstc Thanks for writing the test case to cover the change. Can you put it under modules/swagger-codegen/src/test/java/io/swagger/codegen/java instead? I think that's folder where developers expect to find Java-related test cases.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
"__" is a valid value for enum, but it is shortened to "" in AbstractJavaCodegen. In fact, "" shouldn't be used because it may not be supported in the future according to this post http://stackoverflow.com/questions/34521690/why-is-a-single-underscore-character-an-illegal-name-for-a-lambda-parameter.
For the following field:
The generated enum is
I am also getting the following compiler warning when using Java 8: