Skip to content
This repository was archived by the owner on Jan 13, 2024. It is now read-only.

Commit 1e4e1a6

Browse files
committed
fix: spotless apply ✨
1 parent 7a220c8 commit 1e4e1a6

File tree

1 file changed

+22
-18
lines changed

1 file changed

+22
-18
lines changed

support-minio/src/main/kotlin/org/noelware/remi/minio/MinIOStorageTrailer.kt

+22-18
Original file line numberDiff line numberDiff line change
@@ -271,15 +271,17 @@ class MinIOStorageTrailer(override val config: MinIOStorageConfig): StorageTrail
271271
null
272272
}
273273

274-
list.add(Object(
275-
if (inputStream == null) CHECK_WITH else figureContentType(inputStream),
276-
inputStream,
277-
lastModified,
278-
null,
279-
size,
280-
name,
281-
"minio://$name"
282-
))
274+
list.add(
275+
Object(
276+
if (inputStream == null) CHECK_WITH else figureContentType(inputStream),
277+
inputStream,
278+
lastModified,
279+
null,
280+
size,
281+
name,
282+
"minio://$name"
283+
)
284+
)
283285
}
284286

285287
return list.toList()
@@ -311,15 +313,17 @@ class MinIOStorageTrailer(override val config: MinIOStorageConfig): StorageTrail
311313
null
312314
}
313315

314-
list.add(Object(
315-
if (inputStream == null) CHECK_WITH else figureContentType(inputStream),
316-
inputStream,
317-
lastModified,
318-
null,
319-
size,
320-
name,
321-
"minio://$name"
322-
))
316+
list.add(
317+
Object(
318+
if (inputStream == null) CHECK_WITH else figureContentType(inputStream),
319+
inputStream,
320+
lastModified,
321+
null,
322+
size,
323+
name,
324+
"minio://$name"
325+
)
326+
)
323327
}
324328

325329
return list.toList()

0 commit comments

Comments
 (0)