Initial commit
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
package com.ubt.jimu.community.view;
|
||||
|
||||
import android.view.View;
|
||||
import androidx.recyclerview.widget.RecyclerView;
|
||||
import butterknife.Unbinder;
|
||||
import butterknife.internal.Utils;
|
||||
import com.ubt.jimu.R;
|
||||
import com.ubt.jimu.widgets.LoadStateView;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public class InspireActivity_ViewBinding implements Unbinder {
|
||||
private InspireActivity b;
|
||||
|
||||
public InspireActivity_ViewBinding(InspireActivity inspireActivity, View view) {
|
||||
this.b = inspireActivity;
|
||||
inspireActivity.rv_inspire_creative = (RecyclerView) Utils.b(view, R.id.rv_inspire_creative, "field 'rv_inspire_creative'", RecyclerView.class);
|
||||
inspireActivity.creatlve_loading = (LoadStateView) Utils.b(view, R.id.creatlve_loading, "field 'creatlve_loading'", LoadStateView.class);
|
||||
}
|
||||
|
||||
@Override // butterknife.Unbinder
|
||||
public void unbind() {
|
||||
InspireActivity inspireActivity = this.b;
|
||||
if (inspireActivity == null) {
|
||||
throw new IllegalStateException("Bindings already cleared.");
|
||||
}
|
||||
this.b = null;
|
||||
inspireActivity.rv_inspire_creative = null;
|
||||
inspireActivity.creatlve_loading = null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user