Skip to content

Commit c338700

Browse files
author
Killian Perlin
committed
Style: Fix casing on type name
Change enum `refactoringKind` to `RefactoringKind` according to Java standards.
1 parent 00afc11 commit c338700

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lkql_jit/cli/src/main/java/com/adacore/lkql_jit/cli/LKQLRefactor.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public class LKQLRefactor implements Callable<Integer> {
4848
@CommandLine.Option(names = { "-i", "--inplace" }, description = "Rewrite the files in place")
4949
public boolean inPlace;
5050

51-
private enum refactoringKind {
51+
private enum RefactoringKind {
5252
IS_TO_COLON,
5353
TO_LKQL_V2,
5454
}
@@ -58,7 +58,7 @@ private enum refactoringKind {
5858
description = "Refactoring to run. Valid values: ${COMPLETION-CANDIDATES}",
5959
required = true
6060
)
61-
private refactoringKind refactoring;
61+
private RefactoringKind refactoring;
6262

6363
/**
6464
* Return the refactoring corresponding to enum value passed on command line. This is where

0 commit comments

Comments
 (0)