Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
*/
dependencies {
api('com.github.GTNewHorizons:NotEnoughItems:2.7.81-GTNH:dev')
shadowImplementation(files('libs/PinIn-1.6.0-all.jar'))
shadowImplementation("dev.ghostflyby:PinIn:1.7.2")
shadowImplementation 'org.luaj:luaj-jse:3.0.1'
runtimeOnlyNonPublishable('com.github.GTNewHorizons:Applied-Energistics-2-Unofficial:rv3-beta-684-GTNH:dev')
api('com.github.GTNewHorizons:AE2FluidCraft-Rework:1.4.113-gtnh:dev') {
Expand Down
Empty file modified gradlew
100644 → 100755
Empty file.
Binary file removed libs/PinIn-1.6.0-all.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions src/main/java/com/asdflj/nech/utils/Match.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ public class Match {
public static final PinIn context = (new PinIn(new Loader())).config()
.accelerate(true)
.commit();
private static final Pattern p = Pattern.compile("a");
private static final Set<TreeSearcher<?>> searchers = Collections.newSetFromMap(new WeakHashMap<>());
public static final List<ITextFunction<String, String>> textMiddleware = new LinkedList<>();
public static final List<IInputFunction<String, Set<String>>> inputMiddleware = new LinkedList<>();
private static final Pattern p = Pattern.compile("a");
private static final Set<TreeSearcher<?>> searchers = Collections.newSetFromMap(new WeakHashMap<>());
private static ImmutablePair<String, Set<String>> inputCache = null;

private static <T> TreeSearcher<T> searcher() {
Expand Down