Skip to content

Commit

Permalink
v1.0.1へ更新
Browse files Browse the repository at this point in the history
  • Loading branch information
KatatsumuriPan committed Feb 20, 2024
1 parent 5a0962f commit 1fad5cf
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

### [1.7.10-forge-1.0.1](https://github.com/KatatsumuriPan/BetterLineBreak/releases/tag/1.7.10-forge-1.0.1) - 2024-02-20

- Fix resetting config bug.

### [1.7.10-forge-1.0.0](https://github.com/KatatsumuriPan/BetterLineBreak/releases/tag/1.7.10-forge-1.0.0) - 2024-02-15

- First release.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ modId = better_line_break
# mcmod.info substitution, enabling assertions in run tasks, etc.
modGroup = kpan.b_line_break

modVersion = 1.0.0
modVersion = 1.0.1

# Whether to use modGroup as the maven publishing group.
# Due to a history of using JitPack, the default is com.github.GTNewHorizons for all mods.
Expand Down
5 changes: 2 additions & 3 deletions src/main/java/kpan/b_line_break/asm/core/AsmUtil.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package kpan.b_line_break.asm.core;

import kpan.b_line_break.ModReference;
import org.apache.commons.lang3.NotImplementedException;
import org.apache.commons.lang3.StringUtils;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
Expand Down Expand Up @@ -158,11 +157,11 @@ public static String composeRuntimeMethodDesc(Object deobfReturnType, Object...
}

public static String runtimeMethodGenerics(String deobfGenerics) {
throw new NotImplementedException("TODO");//TODO
throw new RuntimeException("runtimeMethodGenerics is not implemented yet");//TODO
}

public static String[] runtimeExceptions(String[] deobfExceptions) {
throw new NotImplementedException("TODO");//TODO
throw new RuntimeException("runtimeMethodGenerics is not implemented yet");//TODO
}

public static int toLoadOpcode(String desc) {
Expand Down

0 comments on commit 1fad5cf

Please sign in to comment.