Skip to content

Commit acc9ab6

Browse files
committed
spotless
1 parent 536d8ab commit acc9ab6

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

libs/entitlement/qa/entitlement-test-plugin/src/main/java/org/elasticsearch/entitlement/qa/test/NioFileSystemActions.java

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,13 @@ static void checkNewFileChannelWrite() throws IOException {
7373
@EntitlementTest(expectedAccess = PLUGINS)
7474
static void checkNewAsynchronousFileChannel() throws IOException {
7575
var fs = FileSystems.getDefault().provider();
76-
try (var fc = fs.newAsynchronousFileChannel(FileCheckActions.readWriteFile(), Set.of(StandardOpenOption.WRITE), EsExecutors.DIRECT_EXECUTOR_SERVICE)) {}
76+
try (
77+
var fc = fs.newAsynchronousFileChannel(
78+
FileCheckActions.readWriteFile(),
79+
Set.of(StandardOpenOption.WRITE),
80+
EsExecutors.DIRECT_EXECUTOR_SERVICE
81+
)
82+
) {}
7783
}
7884

7985
@EntitlementTest(expectedAccess = PLUGINS)

0 commit comments

Comments
 (0)