mirror of
https://github.com/revanced/smali.git
synced 2025-05-06 09:24:33 +02:00
Use similar formatting for section arrays
This commit is contained in:
parent
fef5569d25
commit
da571dbe71
@ -57,9 +57,20 @@ public class DexPool extends DexWriter<CharSequence, StringReference, CharSequen
|
|||||||
ArrayEncodedValue, EncodedValue, AnnotationElement, StringPool, TypePool, ProtoPool, FieldPool, MethodPool,
|
ArrayEncodedValue, EncodedValue, AnnotationElement, StringPool, TypePool, ProtoPool, FieldPool, MethodPool,
|
||||||
ClassPool, CallSitePool, MethodHandlePool, TypeListPool, AnnotationPool, AnnotationSetPool, EncodedArrayPool> {
|
ClassPool, CallSitePool, MethodHandlePool, TypeListPool, AnnotationPool, AnnotationSetPool, EncodedArrayPool> {
|
||||||
|
|
||||||
private final Markable[] sections = new Markable[] {
|
private final BasePool<?, ?>[] sections = new BasePool<?, ?>[] {
|
||||||
stringSection, typeSection, protoSection, fieldSection, methodSection, classSection, callSiteSection,
|
stringSection,
|
||||||
methodHandleSection, typeListSection, annotationSection, annotationSetSection, encodedArraySection
|
typeSection,
|
||||||
|
protoSection,
|
||||||
|
fieldSection,
|
||||||
|
methodSection,
|
||||||
|
classSection,
|
||||||
|
callSiteSection,
|
||||||
|
methodHandleSection,
|
||||||
|
|
||||||
|
typeListSection,
|
||||||
|
annotationSection,
|
||||||
|
annotationSetSection,
|
||||||
|
encodedArraySection,
|
||||||
};
|
};
|
||||||
|
|
||||||
public DexPool(Opcodes opcodes) {
|
public DexPool(Opcodes opcodes) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user