Serializer started x2

This commit is contained in:
Michael Wain 2025-01-10 22:04:37 +03:00
parent 791589821b
commit 85d23be40b
2 changed files with 2 additions and 1 deletions

View File

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

View File

@ -24,6 +24,7 @@ public class FlashMapper {
.collect(Collectors.toList());
for (Field f : fields) {
String key = f.getAnnotation(FlashField.class).name();
f.setAccessible(true);
Object val = f.get(o);
m1.put(key, val);
}