File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
lkql_jit/options/src/main/java/com/adacore/lkql_jit/options/Refactorings Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ enum ActionKind {
3434 *
3535 * <p>To remove a token, simply use a REPLACE action with an empty text.
3636 */
37- record Action (ActionKind kind , String text ) {}
37+ private record Action (ActionKind kind , String text ) {}
3838
3939 /**
4040 * List of actions accumulated in this state object.
@@ -46,7 +46,7 @@ public State(Liblkqllang.AnalysisUnit unit) {
4646 }
4747
4848 /** Add an action to the list of actions to apply */
49- public void addAction (Liblkqllang .Token token , Action action ) {
49+ private void addAction (Liblkqllang .Token token , Action action ) {
5050 List <Action > actionList ;
5151 var tokenId = getTokenId (token );
5252 if (actions .containsKey (tokenId )) {
You can’t perform that action at this time.
0 commit comments