mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-25 14:05:35 +00:00
code hint fixes
This commit is contained in:
@@ -708,7 +708,10 @@ public class ProxyFrame extends AppFrame implements ActionListener, CatchedListe
|
||||
if (!cont) {
|
||||
try {
|
||||
byte[] hdr = new byte[3];
|
||||
data.read(hdr);
|
||||
if (data.read(hdr) != 3) {
|
||||
throw new IOException();
|
||||
}
|
||||
|
||||
String shdr = new String(hdr);
|
||||
if (swfOnly && ((!shdr.equals("FWS")) && (!shdr.equals("CWS")) && (!shdr.equals("ZWS")))) {
|
||||
return null; //NOT SWF
|
||||
|
||||
Reference in New Issue
Block a user