MyEntry Serializable

This commit is contained in:
Jindra Petřík
2018-01-21 18:23:30 +01:00
parent 2f6d0e66ac
commit c9e7992081

View File

@@ -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 <V> Value
* @author JPEXS
*/
*/
public class MyEntry<K, V> implements Entry<K, V>, Serializable {
private final K key;