Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-19 17:30:08 +01:00
chore: remove logger warn for now
Dieser Commit ist enthalten in:
Ursprung
408e6fe021
Commit
526c33358c
@ -86,7 +86,8 @@ public class FastSchematicReaderV3 implements ClipboardReader {
|
|||||||
if (stream instanceof FileInputStream fileInputStream) {
|
if (stream instanceof FileInputStream fileInputStream) {
|
||||||
stream = new ResettableFileInputStream(fileInputStream);
|
stream = new ResettableFileInputStream(fileInputStream);
|
||||||
} else if (!stream.markSupported()) {
|
} else if (!stream.markSupported()) {
|
||||||
LOGGER.warn("InputStream does not support mark - will be wrapped using in memory buffer");
|
// TODO: How to handle remote schematics using URL streams? (-> SchematicCommands.java L350-352)
|
||||||
|
// LOGGER.warn("InputStream does not support mark - will be wrapped using in memory buffer");
|
||||||
stream = new BufferedInputStream(stream);
|
stream = new BufferedInputStream(stream);
|
||||||
}
|
}
|
||||||
this.resetableInputStream = stream;
|
this.resetableInputStream = stream;
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren