34 lines
1.2 KiB
Java
34 lines
1.2 KiB
Java
package com.ubt.jimu.base;
|
|
|
|
import android.view.View;
|
|
import android.webkit.WebView;
|
|
import android.widget.ProgressBar;
|
|
import butterknife.Unbinder;
|
|
import butterknife.internal.Utils;
|
|
import com.ubt.jimu.R;
|
|
import com.ubt.jimu.widgets.NavigationBarView;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class HelpFragment_ViewBinding implements Unbinder {
|
|
private HelpFragment target;
|
|
|
|
public HelpFragment_ViewBinding(HelpFragment helpFragment, View view) {
|
|
this.target = helpFragment;
|
|
helpFragment.nbv_bar = (NavigationBarView) Utils.b(view, R.id.nbv_bar, "field 'nbv_bar'", NavigationBarView.class);
|
|
helpFragment.pgLoading = (ProgressBar) Utils.b(view, R.id.pgLoading, "field 'pgLoading'", ProgressBar.class);
|
|
helpFragment.webView = (WebView) Utils.b(view, R.id.webView, "field 'webView'", WebView.class);
|
|
}
|
|
|
|
@Override // butterknife.Unbinder
|
|
public void unbind() {
|
|
HelpFragment helpFragment = this.target;
|
|
if (helpFragment == null) {
|
|
throw new IllegalStateException("Bindings already cleared.");
|
|
}
|
|
this.target = null;
|
|
helpFragment.nbv_bar = null;
|
|
helpFragment.pgLoading = null;
|
|
helpFragment.webView = null;
|
|
}
|
|
}
|