mirror of
https://github.com/revanced/smali.git
synced 2025-05-27 19:30:13 +02:00
Return the correct register count in ImmutableMethodImplementation
This commit is contained in:
parent
2d7e111135
commit
d71c98f6b9
@ -85,7 +85,7 @@ public class ImmutableMethodImplementation implements MethodImplementation {
|
||||
methodImplementation.getDebugItems());
|
||||
}
|
||||
|
||||
@Override public int getRegisterCount() { return 0; }
|
||||
@Override public int getRegisterCount() { return registerCount; }
|
||||
@Nonnull @Override public ImmutableList<? extends ImmutableInstruction> getInstructions() { return instructions; }
|
||||
@Nonnull @Override public ImmutableList<? extends ImmutableTryBlock> getTryBlocks() { return tryBlocks; }
|
||||
@Nonnull @Override public ImmutableList<? extends ImmutableDebugItem> getDebugItems() { return debugItems; }
|
||||
|
Loading…
x
Reference in New Issue
Block a user