summaryrefslogtreecommitdiffstats
path: root/dx/src/com/android/dx/dex/file/EncodedMethod.java
diff options
context:
space:
mode:
Diffstat (limited to 'dx/src/com/android/dx/dex/file/EncodedMethod.java')
-rw-r--r--dx/src/com/android/dx/dex/file/EncodedMethod.java9
1 files changed, 4 insertions, 5 deletions
diff --git a/dx/src/com/android/dx/dex/file/EncodedMethod.java b/dx/src/com/android/dx/dex/file/EncodedMethod.java
index c3f71b7a4..0a177e650 100644
--- a/dx/src/com/android/dx/dex/file/EncodedMethod.java
+++ b/dx/src/com/android/dx/dex/file/EncodedMethod.java
@@ -16,6 +16,7 @@
package com.android.dx.dex.file;
+import com.android.dex.Leb128;
import com.android.dx.dex.code.DalvCode;
import com.android.dx.rop.code.AccessFlags;
import com.android.dx.rop.cst.CstMethodRef;
@@ -23,8 +24,6 @@ import com.android.dx.rop.cst.CstString;
import com.android.dx.rop.type.TypeList;
import com.android.dx.util.AnnotatedOutput;
import com.android.dx.util.Hex;
-import com.android.dx.util.Leb128Utils;
-
import java.io.PrintWriter;
/**
@@ -178,12 +177,12 @@ public final class EncodedMethod extends EncodedMember
if (out.annotates()) {
out.annotate(0, String.format(" [%x] %s", dumpSeq,
method.toHuman()));
- out.annotate(Leb128Utils.unsignedLeb128Size(diff),
+ out.annotate(Leb128.unsignedLeb128Size(diff),
" method_idx: " + Hex.u4(methodIdx));
- out.annotate(Leb128Utils.unsignedLeb128Size(accessFlags),
+ out.annotate(Leb128.unsignedLeb128Size(accessFlags),
" access_flags: " +
AccessFlags.methodString(accessFlags));
- out.annotate(Leb128Utils.unsignedLeb128Size(codeOff),
+ out.annotate(Leb128.unsignedLeb128Size(codeOff),
" code_off: " + Hex.u4(codeOff));
}