summaryrefslogtreecommitdiffstats
path: root/dx
diff options
context:
space:
mode:
authormikaelpeltier <mikaelpeltier@google.com>2014-04-18 14:04:51 +0200
committermikaelpeltier <mikaelpeltier@google.com>2014-04-22 09:32:48 +0200
commit006dfe0c0897514609110fe79e3d77e1cc19a567 (patch)
tree310d0508aad0f8e55b8303cab894bb6646c31641 /dx
parent6f65cbf00d9e93e65dca81b1b6a10ccdd545d9a5 (diff)
downloadtoolchain_jack-006dfe0c0897514609110fe79e3d77e1cc19a567.zip
toolchain_jack-006dfe0c0897514609110fe79e3d77e1cc19a567.tar.gz
toolchain_jack-006dfe0c0897514609110fe79e3d77e1cc19a567.tar.bz2
Remove unused parameters
Change-Id: I24df3575733efb5cc052c565e1478549d39a3b6d
Diffstat (limited to 'dx')
-rw-r--r--dx/src/com/android/jack/dx/io/EncodedValueReader.java12
1 files changed, 0 insertions, 12 deletions
diff --git a/dx/src/com/android/jack/dx/io/EncodedValueReader.java b/dx/src/com/android/jack/dx/io/EncodedValueReader.java
index d65d35c..d7eade0 100644
--- a/dx/src/com/android/jack/dx/io/EncodedValueReader.java
+++ b/dx/src/com/android/jack/dx/io/EncodedValueReader.java
@@ -117,44 +117,32 @@ public class EncodedValueReader {
}
}
- @SuppressWarnings("unused")
protected void visitArray(int size) {}
- @SuppressWarnings("unused")
protected void visitAnnotation(int typeIndex, int size) {}
- @SuppressWarnings("unused")
protected void visitAnnotationName(int nameIndex) {}
- @SuppressWarnings("unused")
protected void visitPrimitive(int argAndType, int type, int arg, int size) {
for (int i = 0; i < size; i++) {
in.readByte();
}
}
- @SuppressWarnings("unused")
protected void visitString(int type, int index) {}
- @SuppressWarnings("unused")
protected void visitType(int type, int index) {}
- @SuppressWarnings("unused")
protected void visitField(int type, int index) {}
- @SuppressWarnings("unused")
protected void visitMethod(int type, int index) {}
- @SuppressWarnings("unused")
protected void visitArrayValue(int argAndType) {}
- @SuppressWarnings("unused")
protected void visitAnnotationValue(int argAndType) {}
- @SuppressWarnings("unused")
protected void visitEncodedBoolean(int argAndType) {}
- @SuppressWarnings("unused")
protected void visitEncodedNull(int argAndType) {}
private int readIndex(ByteInput in, int byteCount) {