Serializer started x3

This commit is contained in:
Michael Wain 2025-01-10 22:07:59 +03:00
parent 85d23be40b
commit 1d728936fb
2 changed files with 4 additions and 2 deletions

View File

@ -6,7 +6,7 @@
<groupId>com.alterdekim.game</groupId>
<artifactId>actionScriptDecompiler</artifactId>
<version>0.0.8</version>
<version>0.0.9</version>
<packaging>jar</packaging>
<name>SWFDissect</name>

View File

@ -26,7 +26,9 @@ public class FlashMapper {
String key = f.getAnnotation(FlashField.class).name();
f.setAccessible(true);
Object val = f.get(o);
m1.put(key, val);
if( val != null ) {
m1.put(key, val);
}
}
m.put(s, m1);
} catch (IllegalAccessException e) {