From 8b5f6daf4ec8f8678b857c98724563ccbf9d7055 Mon Sep 17 00:00:00 2001 From: Ryan Kurtz Date: Thu, 16 May 2024 11:40:23 -0400 Subject: [PATCH] GP-0: Updating javadoc for DataTypeComponent.getLength() (Closes #6498) --- .../java/ghidra/program/model/data/DataTypeComponent.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Ghidra/Framework/SoftwareModeling/src/main/java/ghidra/program/model/data/DataTypeComponent.java b/Ghidra/Framework/SoftwareModeling/src/main/java/ghidra/program/model/data/DataTypeComponent.java index a0e946962a0..8d710df8dc0 100644 --- a/Ghidra/Framework/SoftwareModeling/src/main/java/ghidra/program/model/data/DataTypeComponent.java +++ b/Ghidra/Framework/SoftwareModeling/src/main/java/ghidra/program/model/data/DataTypeComponent.java @@ -77,10 +77,10 @@ public interface DataTypeComponent { public int getEndOffset(); /** - * Get the length of this component. Zero-length components will report a length of 0 - * and may overlap other components at the same offset. Similarly, multiple adjacent + * Get the length of this component in 8-bit bytes. Zero-length components will report a length + * of 0 and may overlap other components at the same offset. Similarly, multiple adjacent * bit-field components may appear to overlap at the byte-level. - * @return the length of this component + * @return the length of this component in 8-bit bytes */ public int getLength();