Fix idiotic "this" alias
diff --git a/dexlib/src/main/java/org/jf/dexlib/DexFile.java b/dexlib/src/main/java/org/jf/dexlib/DexFile.java
index 24e9292..a31ee66 100644
--- a/dexlib/src/main/java/org/jf/dexlib/DexFile.java
+++ b/dexlib/src/main/java/org/jf/dexlib/DexFile.java
@@ -163,13 +163,6 @@
      */
     private boolean sortAllItems = false;
 
-
-    /**
-     * this is used to access the dex file from within inner classes, when they declare fields or
-     * variable that hide fields on this object
-     */
-    private final DexFile dexFile = this;
-
     /**
      * Is this file an odex file? This is only set when reading in an odex file
      */
@@ -774,7 +767,7 @@
             new IndexedSection<ClassDefItem>(this, ItemType.TYPE_CLASS_DEF_ITEM) {
 
          public int placeAt(int offset) {
-            if (dexFile.getInplace()) {
+            if (DexFile.this.getInplace()) {
                 return super.placeAt(offset);
             }