diff --git a/Ghidra/Features/Base/src/main/java/ghidra/util/table/field/BytesTableColumn.java b/Ghidra/Features/Base/src/main/java/ghidra/util/table/field/BytesTableColumn.java
index ce86c12c65..52374f1a1a 100644
--- a/Ghidra/Features/Base/src/main/java/ghidra/util/table/field/BytesTableColumn.java
+++ b/Ghidra/Features/Base/src/main/java/ghidra/util/table/field/BytesTableColumn.java
@@ -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.
@@ -40,6 +40,9 @@ public class BytesTableColumn extends ProgramLocationTableColumnExtensionPoint monospacedRenderer = new MonospacedByteRenderer();
/**
@@ -68,50 +71,32 @@ public class BytesTableColumn extends ProgramLocationTableColumnExtensionPoint getColumnRenderer() {
return monospacedRenderer;
diff --git a/Ghidra/Framework/SoftwareModeling/src/main/java/ghidra/program/database/mem/MemoryMapDB.java b/Ghidra/Framework/SoftwareModeling/src/main/java/ghidra/program/database/mem/MemoryMapDB.java
index 66cf570f33..3bc24fb0dd 100644
--- a/Ghidra/Framework/SoftwareModeling/src/main/java/ghidra/program/database/mem/MemoryMapDB.java
+++ b/Ghidra/Framework/SoftwareModeling/src/main/java/ghidra/program/database/mem/MemoryMapDB.java
@@ -59,7 +59,7 @@ public class MemoryMapDB implements Memory, ManagerDB {
private MemoryBlock lastBlock;// the last accessed block
- // lazy hashmap of block names to blocks, must be reloaded if blocks are removed or added
+ // lazy map of block names to blocks, must be reloaded if blocks are removed or added
private HashMap nameBlockMap = new HashMap<>();
private final static MemoryBlock NoBlock = new MemoryBlockStub(); // placeholder for no block, not given out
@@ -135,9 +135,8 @@ public class MemoryMapDB implements Memory, ManagerDB {
*
* NOTE: The {@link #initializeBlocks()} method is used to invalidate the {code addrSetViews}
* without affecting {@code allAddrSet}, while {@link #reloadAll()} will force a complete
- * rebuild of all addresss sets.
+ * rebuild of all address sets.
*
- * @param rebuildAllAddrSets if true all address sets will be rebuilt before returning the
* address set view object.
* @return the address set view object
*/
@@ -2126,8 +2125,6 @@ public class MemoryMapDB implements Memory, ManagerDB {
* In addition, allAddrSet will be updated if addToAll parameter is true.
*
* @param block memory block to be added
- * @param newAddrSetViews address set views which should be built-up
- * @param newAllAddrs if not null this set will be updated with the specified block's address range,
* otherwise only the {@code addrSetView} sets will be updated.
*/
private void addBlockAddresses(MemoryBlockDB block) {
diff --git a/Ghidra/Framework/SoftwareModeling/src/main/java/ghidra/program/database/mem/SubMemoryBlock.java b/Ghidra/Framework/SoftwareModeling/src/main/java/ghidra/program/database/mem/SubMemoryBlock.java
index adcc503d11..162c9e9580 100644
--- a/Ghidra/Framework/SoftwareModeling/src/main/java/ghidra/program/database/mem/SubMemoryBlock.java
+++ b/Ghidra/Framework/SoftwareModeling/src/main/java/ghidra/program/database/mem/SubMemoryBlock.java
@@ -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.
@@ -97,7 +97,7 @@ abstract class SubMemoryBlock implements Comparable {
throws IndexOutOfBoundsException, MemoryAccessException, IOException;
/**
- * Tries to get len bytes from this block at the given offset (relative to the containing
+ * Tries to get {@code len} bytes from this block at the given offset (relative to the containing
* {@link MemoryBlockDB} and put them into the given byte array at the specified offset.
* May return fewer bytes if the requested length is beyond the end of the block.
* @param memBlockOffset the offset relative to the containing {@link MemoryBlockDB}
@@ -130,7 +130,7 @@ abstract class SubMemoryBlock implements Comparable {
throws IndexOutOfBoundsException, MemoryAccessException, IOException;
/**
- * Tries to write len bytes to this block at the given offset (relative to the containing
+ * Tries to write {@code len} bytes to this block at the given offset (relative to the containing
* {@link MemoryBlockDB} using the bytes contained in the given byte array at the specified byte
* array offset.
* May write fewer bytes if the requested length is beyond the end of the block.
@@ -157,7 +157,7 @@ abstract class SubMemoryBlock implements Comparable {
}
/**
- * Sets the length of a subblock (Used by the split command)
+ * Sets the length of a sub-block (Used by the split command)
* @param length the new length of the block
* @throws IOException if a database error occurs
*/
diff --git a/Ghidra/Framework/SoftwareModeling/src/main/java/ghidra/program/model/mem/MemoryBlock.java b/Ghidra/Framework/SoftwareModeling/src/main/java/ghidra/program/model/mem/MemoryBlock.java
index 3c100acd63..61e10c362e 100644
--- a/Ghidra/Framework/SoftwareModeling/src/main/java/ghidra/program/model/mem/MemoryBlock.java
+++ b/Ghidra/Framework/SoftwareModeling/src/main/java/ghidra/program/model/mem/MemoryBlock.java
@@ -266,9 +266,9 @@ public interface MemoryBlock extends Serializable, Comparable {
public int getBytes(Address addr, byte[] b) throws MemoryAccessException;
/**
- * Tries to get len bytes from this block at the given address and put them into the given byte
- * array at the specified offet. May return fewer bytes if the requested length is beyond the
- * end of the block.
+ * Tries to get {@code len} bytes from this block at the given address and put them into the
+ * given byte array at the specified offset. May return fewer bytes if the requested length is
+ * beyond the end of the block.
*
* @param addr the address from which to get the bytes.
* @param b the byte array to populate.