Skip to content

Commit

Permalink
Remove null from enum class
Browse files Browse the repository at this point in the history
Summary:
facebook/facebook-java-business-sdk#235

Looks like we don't need `NULL` for enum class

Reviewed By: joesus

Differential Revision: D17242244

fbshipit-source-id: 33c2cc4c
  • Loading branch information
jingping2015 authored and facebook-github-bot committed Sep 20, 2019
1 parent cf286d3 commit 3daa3b2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ public class {{name:pascal_case}} extends APINode {
@SerializedName("{{{value}}}")
VALUE_{{{value:upper_case}}}("{{{value}}}"),
{{/values_with_naming_convention}}
NULL(null);
;

private String value;

Expand Down

0 comments on commit 3daa3b2

Please sign in to comment.