This repository was archived by the owner on Jan 13, 2024. It is now read-only.
File tree 1 file changed +22
-18
lines changed
support-minio/src/main/kotlin/org/noelware/remi/minio
1 file changed +22
-18
lines changed Original file line number Diff line number Diff line change @@ -271,15 +271,17 @@ class MinIOStorageTrailer(override val config: MinIOStorageConfig): StorageTrail
271
271
null
272
272
}
273
273
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
+ )
283
285
}
284
286
285
287
return list.toList()
@@ -311,15 +313,17 @@ class MinIOStorageTrailer(override val config: MinIOStorageConfig): StorageTrail
311
313
null
312
314
}
313
315
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
+ )
323
327
}
324
328
325
329
return list.toList()
You can’t perform that action at this time.
0 commit comments