Merge branch 'GP-0_ryanmkurtz_PR-9421_wujiecong_typo'

This commit is contained in:
Ryan Kurtz
2026-07-27 05:15:41 -04:00

View File

@@ -98,7 +98,7 @@ public class WildAssemblyParseToken extends AssemblyParseToken {
public record WildRange(long min, long max) implements Comparable<WildRange> {
public WildRange(long min, long max) {
if (min > max) {
throw new AssertionError("max > max");
throw new AssertionError("min > max");
}
this.min = min;
this.max = max;