jd.apk
public void x(Activity activity) {
this.g = 0;
if (activity == null) {
}
else {
Intent intent = activity.getIntent();
if (intent == null) {
}
else {
if (TextUtils.equals("openXView", k.D(intent, "subType"))) {
}
else {
a aVar = new a(intent);
}
this.g = aVar;
}
}
}
need change to
public void x(Activity activity) {
this.g = 0;
if (activity != null) {
Intent intent = activity.getIntent();
if (intent != null) {
if (!TextUtils.equals("openXView", k.D(intent, "subType"))) {
a aVar = new a(intent);
}
this.g = aVar;
}
}
}
jd.apk
need change to