Commit e60ddac5eb8e29332fac9b682915b474ed7a4a57
1 parent
13058a8a
Fix 3 minor warnings/checkstyle problems
Showing
1 changed file
with
4 additions
and
2 deletions
src/client/java/com/mumfrey/liteloader/client/mixin/MixinGuiOverlayDebug.java
... | ... | @@ -51,7 +51,8 @@ public abstract class MixinGuiOverlayDebug extends Gui |
51 | 51 | return list.size(); |
52 | 52 | } |
53 | 53 | |
54 | - @Redirect(method = "renderDebugInfoLeft()V", at = @At(value = "INVOKE", target = "Lnet/minecraft/client/gui/GuiOverlayDebug;call()Ljava/util/List;")) | |
54 | + @Redirect(method = "renderDebugInfoLeft()V", at = @At(value = "INVOKE", | |
55 | + target = "Lnet/minecraft/client/gui/GuiOverlayDebug;call()Ljava/util/List;")) | |
55 | 56 | private List<String> onCall(GuiOverlayDebug self) |
56 | 57 | { |
57 | 58 | List<String> list = this.call(); |
... | ... | @@ -71,7 +72,8 @@ public abstract class MixinGuiOverlayDebug extends Gui |
71 | 72 | return list; |
72 | 73 | } |
73 | 74 | |
74 | - @Redirect(method = "renderDebugInfoRight(Lnet/minecraft/client/gui/ScaledResolution;)V", at = @At(value = "INVOKE", target = "Lnet/minecraft/client/gui/GuiOverlayDebug;getDebugInfoRight()Ljava/util/List;")) | |
75 | + @Redirect(method = "renderDebugInfoRight(Lnet/minecraft/client/gui/ScaledResolution;)V", | |
76 | + at = @At(value = "INVOKE", target = "Lnet/minecraft/client/gui/GuiOverlayDebug;getDebugInfoRight()Ljava/util/List;")) | |
75 | 77 | private <T extends Comparable<T>> List<String> onGetDebugInfoRight(GuiOverlayDebug self) |
76 | 78 | { |
77 | 79 | List<String> list = this.getDebugInfoRight(); | ... | ... |