31 lines
1.1 KiB
Java
31 lines
1.1 KiB
Java
package com.ubt.jimu.main.fragment;
|
|
|
|
import android.view.View;
|
|
import android.widget.ImageView;
|
|
import androidx.recyclerview.widget.RecyclerView;
|
|
import butterknife.Unbinder;
|
|
import butterknife.internal.Utils;
|
|
import com.ubt.jimu.R;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class CommunityFragment_ViewBinding implements Unbinder {
|
|
private CommunityFragment b;
|
|
|
|
public CommunityFragment_ViewBinding(CommunityFragment communityFragment, View view) {
|
|
this.b = communityFragment;
|
|
communityFragment.mIvInspire = (ImageView) Utils.b(view, R.id.im_inspire_publish, "field 'mIvInspire'", ImageView.class);
|
|
communityFragment.mRvCommunity = (RecyclerView) Utils.b(view, R.id.rlv_community_home, "field 'mRvCommunity'", RecyclerView.class);
|
|
}
|
|
|
|
@Override // butterknife.Unbinder
|
|
public void unbind() {
|
|
CommunityFragment communityFragment = this.b;
|
|
if (communityFragment == null) {
|
|
throw new IllegalStateException("Bindings already cleared.");
|
|
}
|
|
this.b = null;
|
|
communityFragment.mIvInspire = null;
|
|
communityFragment.mRvCommunity = null;
|
|
}
|
|
}
|