mirror of
https://github.com/revanced/smali.git
synced 2025-05-28 03:40:12 +02:00
Make ReferenceType constants static final, not just static
This commit is contained in:
parent
8daecd0246
commit
5581141868
@ -31,11 +31,10 @@
|
||||
|
||||
package org.jf.dexlib2;
|
||||
|
||||
public abstract class ReferenceType
|
||||
{
|
||||
public static int String = 0;
|
||||
public static int Type = 1;
|
||||
public static int Field = 2;
|
||||
public static int Method = 3;
|
||||
public static int None = 4;
|
||||
public abstract class ReferenceType {
|
||||
public static final int String = 0;
|
||||
public static final int Type = 1;
|
||||
public static final int Field = 2;
|
||||
public static final int Method = 3;
|
||||
public static final int None = 4;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user