GP-598 removed ELF restriction on definition of 32-bit section header

values
This commit is contained in:
ghidra1
2021-01-14 17:44:14 -05:00
parent 5751276c63
commit 92b2405c53

View File

@@ -139,10 +139,6 @@ public class ElfSectionHeaderType {
public final String description;
public ElfSectionHeaderType(int value, String name, String description) {
if (value < 0) {
throw new IllegalArgumentException(
"ElfProgramHeaderType value out of range: 0x" + Long.toHexString(value));
}
this.value = value;
this.name = name;
this.description = description;