Add missing underscores for PascalCase enum values #4837 (#18594)

Co-authored-by: Renato Mameli <renato.mameli@teamviewer.com>
This commit is contained in:
Renato Mameli
2024-05-21 09:29:34 +02:00
committed by GitHub
parent 9398c6444a
commit bfa26ea6be
58 changed files with 65 additions and 58 deletions

View File

@@ -31,7 +31,7 @@ public class ParentWithNullable {
public enum TypeEnum {
CHILDWITHNULLABLE(String.valueOf("ChildWithNullable"));
CHILD_WITH_NULLABLE(String.valueOf("ChildWithNullable"));
private String value;

View File

@@ -18,7 +18,7 @@ public class ParentWithNullable {
* Gets or Sets type
*/
public enum TypeEnum {
CHILDWITHNULLABLE("ChildWithNullable");
CHILD_WITH_NULLABLE("ChildWithNullable");
private String value;