analysis: full official-app reverse artifacts (jadx sources, ghidra libcxsdk decomp, authoritative protocol conclusions) + docs
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
package cn.com.magnity.magnitycx.sdk;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public class CaliInfo implements Cloneable {
|
||||
public long date;
|
||||
public int reserved;
|
||||
public int size;
|
||||
|
||||
public CaliInfo() {
|
||||
reset();
|
||||
}
|
||||
|
||||
public void reset() {
|
||||
this.size = 0;
|
||||
this.reserved = 0;
|
||||
this.date = 0L;
|
||||
}
|
||||
|
||||
public Object clone() throws CloneNotSupportedException {
|
||||
return super.clone();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user