mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-31 08:06:39 +00:00
spelling: unsupported
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
committed by
Jindra Petřík
parent
439f453182
commit
082a6fda92
@@ -228,7 +228,7 @@ public class ImageHelper {
|
||||
return "bmp";
|
||||
}
|
||||
|
||||
throw new Error("Unsuported image format: " + format);
|
||||
throw new Error("Unsupported image format: " + format);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -67,7 +67,7 @@ public class SerializableImage implements Serializable {
|
||||
|
||||
public SerializableImage(int width, int height, int imageType, int[] pixels) {
|
||||
if (imageType != BufferedImage.TYPE_INT_ARGB_PRE && imageType != BufferedImage.TYPE_INT_RGB) {
|
||||
throw new Error("Unsuppported image type: " + imageType);
|
||||
throw new Error("Unsupported image type: " + imageType);
|
||||
}
|
||||
|
||||
image = new BufferedImage(width, height, imageType);
|
||||
|
||||
@@ -2959,7 +2959,7 @@ public class CommandLineArgumentParser {
|
||||
System.exit(2);
|
||||
}
|
||||
if (!ok) {
|
||||
System.err.println("Import FAILED. Maybe unsuppoted media type? Only MP3 and uncompressed WAV are available.");
|
||||
System.err.println("Import FAILED. Maybe unsupported media type? Only MP3 and uncompressed WAV are available.");
|
||||
System.exit(1);
|
||||
}
|
||||
} else if (characterTag instanceof DefineBinaryDataTag) {
|
||||
@@ -3018,7 +3018,7 @@ public class CommandLineArgumentParser {
|
||||
ok = false;
|
||||
}
|
||||
if (!ok) {
|
||||
System.err.println("Import FAILED. Maybe unsuppoted media type? Only MP3 and uncompressed WAV are available.");
|
||||
System.err.println("Import FAILED. Maybe unsupported media type? Only MP3 and uncompressed WAV are available.");
|
||||
System.exit(1);
|
||||
}
|
||||
} else if (characterTag instanceof DefineVideoStreamTag) {
|
||||
|
||||
Reference in New Issue
Block a user