diff options
author | zaaarf <zaaarf@proton.me> | 2023-02-27 17:13:26 +0100 |
---|---|---|
committer | zaaarf <zaaarf@proton.me> | 2023-02-27 17:13:26 +0100 |
commit | 4064aa7726d1aea02b479981df2a03a131ae980d (patch) | |
tree | ded3da5501f155a283eddc2d2cfba1c538d45a94 /src/main/java/ftbsc/lll/tools/debug | |
parent | fe928a0fb0b4607dc3983a3e13ecab823d211131 (diff) |
doc: improved javadocs
Diffstat (limited to 'src/main/java/ftbsc/lll/tools/debug')
-rw-r--r-- | src/main/java/ftbsc/lll/tools/debug/BytecodePrinter.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/ftbsc/lll/tools/debug/BytecodePrinter.java b/src/main/java/ftbsc/lll/tools/debug/BytecodePrinter.java index cf253c9..c08d85c 100644 --- a/src/main/java/ftbsc/lll/tools/debug/BytecodePrinter.java +++ b/src/main/java/ftbsc/lll/tools/debug/BytecodePrinter.java @@ -41,7 +41,7 @@ public class BytecodePrinter { /** * Logs the bytecode of a method using the ASM logger. * @param main the method to print - * @param logger the Log4j logger to print it with + * @param logger the Log4j {@link Logger} to print it with */ public static void logAsmMethod(final MethodNode main, final Logger logger) { for (AbstractInsnNode i : main.instructions.toArray()) |