diff --git a/Ghidra/Framework/Emulation/src/main/java/ghidra/generic/util/datastruct/SemisparseByteArray.java b/Ghidra/Framework/Emulation/src/main/java/ghidra/generic/util/datastruct/SemisparseByteArray.java index 90ec905a56..459727858a 100644 --- a/Ghidra/Framework/Emulation/src/main/java/ghidra/generic/util/datastruct/SemisparseByteArray.java +++ b/Ghidra/Framework/Emulation/src/main/java/ghidra/generic/util/datastruct/SemisparseByteArray.java @@ -119,7 +119,7 @@ public class SemisparseByteArray { * *
* Copies {@code length} bytes of data from the semisparse array starting at index {@code loc} - * into {@code data} starting at index {@code} offset. All initialized portions within the + * into {@code data} starting at index {@code offset}. All initialized portions within the * requested region are copied. The uninitialized portions may be treated as zeroes or not * copied at all. Typically, the destination array has been initialized to zero by the caller, * such that all uninitialized portions are zero. To avoid fetching uninitialized data, use @@ -244,7 +244,8 @@ public class SemisparseByteArray { final int length) { if (length < 0) { throw new IllegalArgumentException("length: " + length); - } else if (length == 0) { + } + else if (length == 0) { return; } defined.add(ULongSpan.extent(loc, length));