diff options
author | Harvey Harrison <[email protected]> | 2013-10-17 21:34:47 -0700 |
---|---|---|
committer | Harvey Harrison <[email protected]> | 2013-10-17 21:34:47 -0700 |
commit | 7607867f0bba56792cad320695d6209b49acce9d (patch) | |
tree | 36f348562c272f5b994c12519c27d5b06b233566 /src/java/jogamp/common/os/elf/SectionArmAttributes.java | |
parent | 791a2749886f02ec7b8db25bf8862e8269b96da5 (diff) |
gluegen: add all missing @Override annotations
Signed-off-by: Harvey Harrison <[email protected]>
Diffstat (limited to 'src/java/jogamp/common/os/elf/SectionArmAttributes.java')
-rw-r--r-- | src/java/jogamp/common/os/elf/SectionArmAttributes.java | 3 |
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()+"]"; } |