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

@@ -16,7 +16,7 @@
| Name | Value |
|---- | -----|
| CHILDWITHNULLABLE | &quot;ChildWithNullable&quot; |
| CHILD_WITH_NULLABLE | &quot;ChildWithNullable&quot; |

View File

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