Skip to content

Commit

Permalink
Fix wrong javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
makamys committed Nov 8, 2023
1 parent ce89bd9 commit 6cc7f3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/makamys/coretweaks/asm/FMLLogTransformer.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ public byte[] transform(String name, String transformedName, byte[] basicClass)
* public static void log(String targetLog, Level level, Throwable ex, String format, Object... data)
* {
* - coreLog.log(targetLog, level, ex, format, data);
* + FMLLogTransformer.redirectLog(targetLog, level, ex, format, data, coreLog);
* + FMLLogTransformer.Hooks.redirectLog(targetLog, level, ex, format, data, coreLog);
* }
*
* public static void log(Level level, Throwable ex, String format, Object... data)
* {
* - coreLog.log(level, ex, format, data);
* + FMLLogTransformer.redirectLog(level, ex, format, data, coreLog);
* + FMLLogTransformer.Hooks.redirectLog(level, ex, format, data, coreLog);
* }
* </pre>
*/
Expand Down

0 comments on commit 6cc7f3d

Please sign in to comment.