mirror of
https://github.com/revanced/smali.git
synced 2025-06-13 04:27:38 +02:00
Minor reordering of methods in DexFileBuffer
This commit is contained in:
@ -43,10 +43,6 @@ public class DexFileBuffer {
|
||||
this.buf = buf;
|
||||
}
|
||||
|
||||
public String getString(int stringIndex) {
|
||||
return null;
|
||||
}
|
||||
|
||||
public int getFieldIdItemOffset(int fieldIndex) {
|
||||
return 0;
|
||||
}
|
||||
@ -59,12 +55,21 @@ public class DexFileBuffer {
|
||||
return 0;
|
||||
}
|
||||
|
||||
public int getClassDefOffset(int classIndex) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
public int getClassCount() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
public int getClassDefOffset(int classIndex) {
|
||||
return 0;
|
||||
public String getString(int stringIndex) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Nullable
|
||||
public String getOptionalString(int stringIndex) {
|
||||
return null;
|
||||
}
|
||||
|
||||
public String getType(int typeIndex) {
|
||||
@ -79,11 +84,6 @@ public class DexFileBuffer {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Nullable
|
||||
public String getOptionalString(int stringIndex) {
|
||||
return null;
|
||||
}
|
||||
|
||||
public String getReference(int referenceType, int referenceIndex) {
|
||||
return null;
|
||||
}
|
||||
|
Reference in New Issue
Block a user