From 33e2b1d6db50b353ead3073307adfd3fa69b7e49 Mon Sep 17 00:00:00 2001 From: Konloch Date: Sun, 4 Jul 2021 00:04:08 -0700 Subject: [PATCH] Since Tag Cleanup --- .../club/bytecodeviewer/decompilers/bytecode/TypeAndName.java | 1 + .../bytecodeviewer/decompilers/impl/FernFlowerDecompiler.java | 1 + .../club/bytecodeviewer/gui/components/MethodsRenderer.java | 2 +- .../club/bytecodeviewer/gui/components/VisibleComponent.java | 1 + .../club/bytecodeviewer/gui/resourcelist/ResourceListPane.java | 1 + .../club/bytecodeviewer/gui/resourceviewer/TabbedPane.java | 1 + .../gui/resourceviewer/WorkPaneMainComponent.java | 1 + .../bytecodeviewer/gui/resourceviewer/viewer/ClassViewer.java | 1 + .../club/bytecodeviewer/gui/util/PaneUpdaterThread.java | 1 + .../club/bytecodeviewer/malwarescanner/impl/JavaNetScanner.java | 2 +- .../bytecodeviewer/malwarescanner/impl/ReflectionScanner.java | 2 +- .../club/bytecodeviewer/malwarescanner/impl/URLScanner.java | 2 +- .../java/the/bytecode/club/bytecodeviewer/util/JarUtils.java | 1 + 13 files changed, 13 insertions(+), 4 deletions(-) diff --git a/src/main/java/the/bytecode/club/bytecodeviewer/decompilers/bytecode/TypeAndName.java b/src/main/java/the/bytecode/club/bytecodeviewer/decompilers/bytecode/TypeAndName.java index 0287e2bc..f1a90905 100644 --- a/src/main/java/the/bytecode/club/bytecodeviewer/decompilers/bytecode/TypeAndName.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/decompilers/bytecode/TypeAndName.java @@ -25,6 +25,7 @@ import org.objectweb.asm.Type; * around * * @author Waterwolf + * @since 10/02/2011 */ public class TypeAndName { public Type type = null; diff --git a/src/main/java/the/bytecode/club/bytecodeviewer/decompilers/impl/FernFlowerDecompiler.java b/src/main/java/the/bytecode/club/bytecodeviewer/decompilers/impl/FernFlowerDecompiler.java index aa6d1fa8..121c45e6 100644 --- a/src/main/java/the/bytecode/club/bytecodeviewer/decompilers/impl/FernFlowerDecompiler.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/decompilers/impl/FernFlowerDecompiler.java @@ -38,6 +38,7 @@ import static the.bytecode.club.bytecodeviewer.Constants.*; * * @author Konloch * @author WaterWolf + * @since 09/26/2011 */ public class FernFlowerDecompiler extends InternalDecompiler { diff --git a/src/main/java/the/bytecode/club/bytecodeviewer/gui/components/MethodsRenderer.java b/src/main/java/the/bytecode/club/bytecodeviewer/gui/components/MethodsRenderer.java index 2786b572..bfa723c5 100644 --- a/src/main/java/the/bytecode/club/bytecodeviewer/gui/components/MethodsRenderer.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/gui/components/MethodsRenderer.java @@ -27,7 +27,7 @@ import java.awt.*; /** * @author Konloch * @author Waterwolf - * @since 6/24/2021 + * @since 09/29/2011 */ public class MethodsRenderer extends JLabel implements ListCellRenderer { diff --git a/src/main/java/the/bytecode/club/bytecodeviewer/gui/components/VisibleComponent.java b/src/main/java/the/bytecode/club/bytecodeviewer/gui/components/VisibleComponent.java index 3fa84da3..4a440200 100644 --- a/src/main/java/the/bytecode/club/bytecodeviewer/gui/components/VisibleComponent.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/gui/components/VisibleComponent.java @@ -25,6 +25,7 @@ import javax.swing.JInternalFrame; * * @author Konloch * @author WaterWolf + * @since 09/26/2011 */ public abstract class VisibleComponent extends JInternalFrame diff --git a/src/main/java/the/bytecode/club/bytecodeviewer/gui/resourcelist/ResourceListPane.java b/src/main/java/the/bytecode/club/bytecodeviewer/gui/resourcelist/ResourceListPane.java index 6cbb9522..27da1793 100644 --- a/src/main/java/the/bytecode/club/bytecodeviewer/gui/resourcelist/ResourceListPane.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/gui/resourcelist/ResourceListPane.java @@ -60,6 +60,7 @@ import the.bytecode.club.bytecodeviewer.util.LazyNameUtil; * @author Konloch * @author WaterWolf * @author afffsdd + * @since 09/26/2011 */ public class ResourceListPane extends VisibleComponent implements FileDrop.Listener diff --git a/src/main/java/the/bytecode/club/bytecodeviewer/gui/resourceviewer/TabbedPane.java b/src/main/java/the/bytecode/club/bytecodeviewer/gui/resourceviewer/TabbedPane.java index 4263963e..f1c659c0 100644 --- a/src/main/java/the/bytecode/club/bytecodeviewer/gui/resourceviewer/TabbedPane.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/gui/resourceviewer/TabbedPane.java @@ -40,6 +40,7 @@ import the.bytecode.club.bytecodeviewer.gui.util.DelayTabbedPaneThread; * * @author Konloch * @author WaterWolf + * @since 09/26/2011 */ public class TabbedPane extends JPanel { diff --git a/src/main/java/the/bytecode/club/bytecodeviewer/gui/resourceviewer/WorkPaneMainComponent.java b/src/main/java/the/bytecode/club/bytecodeviewer/gui/resourceviewer/WorkPaneMainComponent.java index 6fa80569..6a651d8e 100644 --- a/src/main/java/the/bytecode/club/bytecodeviewer/gui/resourceviewer/WorkPaneMainComponent.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/gui/resourceviewer/WorkPaneMainComponent.java @@ -45,6 +45,7 @@ import static the.bytecode.club.bytecodeviewer.Constants.BLOCK_TAB_MENU; * * @author Konloch * @author WaterWolf + * @since 09/26/2011 */ public class WorkPaneMainComponent extends VisibleComponent { diff --git a/src/main/java/the/bytecode/club/bytecodeviewer/gui/resourceviewer/viewer/ClassViewer.java b/src/main/java/the/bytecode/club/bytecodeviewer/gui/resourceviewer/viewer/ClassViewer.java index 83313318..1bfdf144 100644 --- a/src/main/java/the/bytecode/club/bytecodeviewer/gui/resourceviewer/viewer/ClassViewer.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/gui/resourceviewer/viewer/ClassViewer.java @@ -55,6 +55,7 @@ import static the.bytecode.club.bytecodeviewer.util.MethodParser.Method; * * @author Konloch * @author WaterWolf + * @since 09/26/2011 */ public class ClassViewer extends ResourceViewer diff --git a/src/main/java/the/bytecode/club/bytecodeviewer/gui/util/PaneUpdaterThread.java b/src/main/java/the/bytecode/club/bytecodeviewer/gui/util/PaneUpdaterThread.java index cbeaf4fa..7fa00885 100644 --- a/src/main/java/the/bytecode/club/bytecodeviewer/gui/util/PaneUpdaterThread.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/gui/util/PaneUpdaterThread.java @@ -46,6 +46,7 @@ import static the.bytecode.club.bytecodeviewer.gui.resourceviewer.TabbedPane.BLA * @author Konloch * @author WaterWolf * @author DreamSworK + * @since 09/26/2011 */ public abstract class PaneUpdaterThread implements Runnable { diff --git a/src/main/java/the/bytecode/club/bytecodeviewer/malwarescanner/impl/JavaNetScanner.java b/src/main/java/the/bytecode/club/bytecodeviewer/malwarescanner/impl/JavaNetScanner.java index f2ddca68..2dd10b05 100644 --- a/src/main/java/the/bytecode/club/bytecodeviewer/malwarescanner/impl/JavaNetScanner.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/malwarescanner/impl/JavaNetScanner.java @@ -28,7 +28,7 @@ import static the.bytecode.club.bytecodeviewer.Constants.nl; /** * @author Konloch * @author WaterWolf - * @since 6/27/2021 + * @since 10/02/2011 */ public class JavaNetScanner extends MalwareCodeScanner { diff --git a/src/main/java/the/bytecode/club/bytecodeviewer/malwarescanner/impl/ReflectionScanner.java b/src/main/java/the/bytecode/club/bytecodeviewer/malwarescanner/impl/ReflectionScanner.java index fad22fae..0711588f 100644 --- a/src/main/java/the/bytecode/club/bytecodeviewer/malwarescanner/impl/ReflectionScanner.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/malwarescanner/impl/ReflectionScanner.java @@ -30,7 +30,7 @@ import static the.bytecode.club.bytecodeviewer.Constants.nl; * * @author Konloch * @author WaterWolf - * @since 6/27/2021 + * @since 10/02/2011 */ public class ReflectionScanner extends MalwareCodeScanner { diff --git a/src/main/java/the/bytecode/club/bytecodeviewer/malwarescanner/impl/URLScanner.java b/src/main/java/the/bytecode/club/bytecodeviewer/malwarescanner/impl/URLScanner.java index a4c6c346..c98da2d1 100644 --- a/src/main/java/the/bytecode/club/bytecodeviewer/malwarescanner/impl/URLScanner.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/malwarescanner/impl/URLScanner.java @@ -36,7 +36,7 @@ import static the.bytecode.club.bytecodeviewer.Constants.nl; * * @author Konloch * @author WaterWolf - * @since 6/27/2021 + * @since 10/02/2011 */ public class URLScanner extends MalwareCodeScanner { diff --git a/src/main/java/the/bytecode/club/bytecodeviewer/util/JarUtils.java b/src/main/java/the/bytecode/club/bytecodeviewer/util/JarUtils.java index ce9f85ea..b1baf9d8 100644 --- a/src/main/java/the/bytecode/club/bytecodeviewer/util/JarUtils.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/util/JarUtils.java @@ -48,6 +48,7 @@ import static the.bytecode.club.bytecodeviewer.Constants.*; * * @author Konloch * @author WaterWolf + * @since 09/26/2011 */ public class JarUtils {