From 68f5c62fd2f46744bdf364090a3b8c8f0467433c Mon Sep 17 00:00:00 2001 From: Enrico Zeilmaker Date: Tue, 1 Aug 2023 02:56:48 +0200 Subject: [PATCH] reverting one of the changes from commit f81d1ac58de0e89d1c596b84a6eec6b00ffb16a6, because it caused the use of the FQN for classes defined within the same package (cherry picked from commit ab4fd58e6c50b96de1ea2c1025b6353b082f50bd) --- .../com/jpexs/decompiler/flash/abc/types/traits/Trait.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/types/traits/Trait.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/types/traits/Trait.java index 45db33cd7..945a3e809 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/types/traits/Trait.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/types/traits/Trait.java @@ -260,10 +260,6 @@ public abstract class Trait implements Cloneable, Serializable { DottedChain ipath = imports.get(i); String name = ipath.getLast(); if (ipath.getWithoutLast().equals(ignorePackage)) { //do not check classes from same package, they are imported automatically - if (importnames.contains(name)) { - fullyQualifiedNames.add(DottedChain.parseWithSuffix(name)); - } - imports.remove(i); i--; continue;