From c9e79920817fcb67472e0b888bb491dc9a41b5ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=C5=99=C3=ADk?= Date: Sun, 21 Jan 2018 18:23:30 +0100 Subject: [PATCH] MyEntry Serializable --- .../jpexs/decompiler/flash/helpers/collections/MyEntry.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/helpers/collections/MyEntry.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/helpers/collections/MyEntry.java index 1b9e054be..6fc936f59 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/helpers/collections/MyEntry.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/helpers/collections/MyEntry.java @@ -12,9 +12,11 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library. */ + * License along with this library. + */ package com.jpexs.decompiler.flash.helpers.collections; +import java.io.Serializable; import java.util.Map.Entry; import java.util.Objects; @@ -24,7 +26,7 @@ import java.util.Objects; * @param Value * @author JPEXS */ -public class MyEntry implements Entry { +public class MyEntry implements Entry, Serializable { private final K key;