Serializer started x2
This commit is contained in:
parent
791589821b
commit
85d23be40b
2
pom.xml
2
pom.xml
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
<groupId>com.alterdekim.game</groupId>
|
<groupId>com.alterdekim.game</groupId>
|
||||||
<artifactId>actionScriptDecompiler</artifactId>
|
<artifactId>actionScriptDecompiler</artifactId>
|
||||||
<version>0.0.7</version>
|
<version>0.0.8</version>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
<name>SWFDissect</name>
|
<name>SWFDissect</name>
|
||||||
|
@ -24,6 +24,7 @@ public class FlashMapper {
|
|||||||
.collect(Collectors.toList());
|
.collect(Collectors.toList());
|
||||||
for (Field f : fields) {
|
for (Field f : fields) {
|
||||||
String key = f.getAnnotation(FlashField.class).name();
|
String key = f.getAnnotation(FlashField.class).name();
|
||||||
|
f.setAccessible(true);
|
||||||
Object val = f.get(o);
|
Object val = f.get(o);
|
||||||
m1.put(key, val);
|
m1.put(key, val);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user