mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-07-30 07:18:37 -09:00
Merge branch 'GP-0_ryanmkurtz_PR-9421_wujiecong_typo'
This commit is contained in:
@@ -4,9 +4,9 @@
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user