Issue #203 AS1/2 (de)compiler fixes

This commit is contained in:
Jindra Pet��k
2013-07-19 20:08:33 +02:00
parent baaf633cd7
commit c0c1b56615
22 changed files with 76 additions and 43 deletions
@@ -16,6 +16,7 @@
*/
package com.jpexs.decompiler.graph;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
@@ -23,7 +24,7 @@ import java.util.List;
*
* @author JPEXS
*/
public class GraphPath {
public class GraphPath implements Serializable {
private List<Integer> keys = new ArrayList<>();
private List<Integer> vals = new ArrayList<>();