summaryrefslogtreecommitdiffstats
path: root/dx/src/com/android/dx/command/findusages/Main.java
diff options
context:
space:
mode:
Diffstat (limited to 'dx/src/com/android/dx/command/findusages/Main.java')
-rw-r--r--dx/src/com/android/dx/command/findusages/Main.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/dx/src/com/android/dx/command/findusages/Main.java b/dx/src/com/android/dx/command/findusages/Main.java
index ba29787a5..b0eeb6966 100644
--- a/dx/src/com/android/dx/command/findusages/Main.java
+++ b/dx/src/com/android/dx/command/findusages/Main.java
@@ -16,7 +16,7 @@
package com.android.dx.command.findusages;
-import com.android.dx.io.DexBuffer;
+import com.android.dex.Dex;
import java.io.File;
import java.io.IOException;
import java.io.PrintWriter;
@@ -27,7 +27,7 @@ public final class Main {
String declaredBy = args[1];
String memberName = args[2];
- DexBuffer dex = new DexBuffer(new File(dexFile));
+ Dex dex = new Dex(new File(dexFile));
PrintWriter out = new PrintWriter(System.out);
new FindUsages(dex, declaredBy, memberName, out).findUsages();
out.flush();