mirror of
https://github.com/revanced/smali.git
synced 2025-05-23 18:16:23 +02:00
Store the string values, not the objects
git-svn-id: https://smali.googlecode.com/svn/trunk@360 55b6fa8a-2a1e-11de-a435-ffa8d773f76a
This commit is contained in:
parent
1e4a0716f4
commit
866267dfb7
@ -33,16 +33,16 @@ import org.jf.dexlib.StringIdItem;
|
||||
|
||||
public class LocalDebugMethodItem extends DebugMethodItem {
|
||||
public final int Register;
|
||||
public final StringIdItem Name;
|
||||
public final TypeIdItem Type;
|
||||
public final StringIdItem Signature;
|
||||
public final String Name;
|
||||
public final String Type;
|
||||
public final String Signature;
|
||||
|
||||
public LocalDebugMethodItem(int offset, String template, int sortOrder, int register, StringIdItem name,
|
||||
TypeIdItem type, StringIdItem signature) {
|
||||
super(offset, template, sortOrder);
|
||||
this.Register = register;
|
||||
this.Name = name;
|
||||
this.Type = type;
|
||||
this.Signature = signature;
|
||||
this.Name = name==null?null:name.getStringValue();
|
||||
this.Type = type==null?null:type.getTypeDescriptor();
|
||||
this.Signature = signature==null?null:signature.getStringValue();
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user