Skip to content

Commit 8f207bd

Browse files
committed
Add missing final
1 parent b99bb25 commit 8f207bd

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/test/java/software/xdev/saveactions/core/component/SaveActionManagerConstants.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,16 @@
1717

1818
public interface SaveActionManagerConstants
1919
{
20-
2120
BiConsumer<CodeInsightTestFixture, SaveActionsService> SAVE_ACTION_MANAGER = (fixture, saveActionService) ->
2221
WriteCommandAction.writeCommandAction(fixture.getProject()).run(() -> runFixture(fixture, saveActionService));
2322

24-
static void runFixture(CodeInsightTestFixture fixture, SaveActionsService saveActionService)
23+
static void runFixture(final CodeInsightTestFixture fixture, final SaveActionsService saveActionService)
2524
{
2625
// set modification timestamp ++
2726
fixture.getFile().clearCaches();
2827

2928
// call plugin on document
30-
Set<PsiFile> psiFiles = new HashSet<>(singleton(fixture.getFile()));
29+
final Set<PsiFile> psiFiles = new HashSet<>(singleton(fixture.getFile()));
3130
saveActionService.guardedProcessPsiFiles(fixture.getProject(), psiFiles, activate, saveAll);
3231
}
3332
}

0 commit comments

Comments
 (0)