summaryrefslogtreecommitdiffstats
path: root/src/java/jogamp/common/os/elf/SectionArmAttributes.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/java/jogamp/common/os/elf/SectionArmAttributes.java')
-rw-r--r--src/java/jogamp/common/os/elf/SectionArmAttributes.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/java/jogamp/common/os/elf/SectionArmAttributes.java b/src/java/jogamp/common/os/elf/SectionArmAttributes.java
index 413250a..249b2e3 100644
--- a/src/java/jogamp/common/os/elf/SectionArmAttributes.java
+++ b/src/java/jogamp/common/os/elf/SectionArmAttributes.java
@@ -147,6 +147,7 @@ public class SectionArmAttributes extends Section {
throw new IllegalArgumentException("Not ULEB128 but "+tag.type);
}
+ @Override
public String toString() {
return tag+" = "+value;
}
@@ -161,6 +162,7 @@ public class SectionArmAttributes extends Section {
this.attributes = attributes;
}
+ @Override
public String toString() {
return vendor + attributes.toString();
}
@@ -172,6 +174,7 @@ public class SectionArmAttributes extends Section {
this.vendorAttributesList = parse(data, offset, length);
}
+ @Override
public String toString() {
return "SectionArmAttributes["+super.toSubString()+", "+vendorAttributesList.toString()+"]";
}