Remove some unneeded interfaces

This commit is contained in:
Ben Gruver 2012-10-23 20:55:53 -07:00
parent 3ad13f4fe3
commit d23b567c2b
5 changed files with 0 additions and 8 deletions

View File

@ -32,7 +32,6 @@
package org.jf.dexlib2;
import com.google.common.io.ByteStreams;
import com.google.common.io.Closeables;
import com.google.common.io.Files;
import org.jf.dexlib2.dexbacked.DexBackedDexFile;
import org.jf.dexlib2.dexbacked.DexBuffer;
@ -41,9 +40,7 @@ import org.jf.util.ExceptionWithContext;
import javax.annotation.Nonnull;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.zip.ZipEntry;
import java.util.zip.ZipFile;

View File

@ -34,7 +34,6 @@ package org.jf.dexlib2.dexbacked;
import com.google.common.collect.ImmutableList;
import org.jf.dexlib2.dexbacked.util.*;
import org.jf.dexlib2.iface.ClassDef;
import org.jf.dexlib2.iface.Method;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;

View File

@ -32,7 +32,6 @@
package org.jf.dexlib2.dexbacked;
import org.jf.dexlib2.dexbacked.util.FixedSizeList;
import org.jf.dexlib2.iface.ClassDef;
import org.jf.dexlib2.iface.DexFile;
import javax.annotation.Nonnull;

View File

@ -33,7 +33,5 @@ package org.jf.dexlib2.iface.value;
import org.jf.dexlib2.iface.BaseAnnotation;
import javax.annotation.Nonnull;
public interface AnnotationEncodedValue extends EncodedValue, BaseAnnotation {
}

View File

@ -33,7 +33,6 @@ package org.jf.dexlib2.util;
import org.jf.dexlib2.Format;
import org.jf.dexlib2.Opcode;
import org.jf.dexlib2.ReferenceType;
public class Preconditions {
public static void checkFormat(Opcode opcode, Format expectedFormat) {