33 lines
1.2 KiB
Java
33 lines
1.2 KiB
Java
package com.scb.phone.view.custom.common;
|
|
|
|
import android.view.View;
|
|
import android.widget.TextView;
|
|
import androidx.appcompat.widget.AppCompatSeekBar;
|
|
import butterknife.Unbinder;
|
|
import com.scb.phone.R;
|
|
import o.pyT;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public class SetLimitView_ViewBinding implements Unbinder {
|
|
private SetLimitView d;
|
|
|
|
public SetLimitView_ViewBinding(SetLimitView setLimitView, View view) {
|
|
this.d = setLimitView;
|
|
setLimitView.seekBarLimiter = (AppCompatSeekBar) pyT.e(view, R.id.limiter_seekbar, "field 'seekBarLimiter'", AppCompatSeekBar.class);
|
|
setLimitView.startLimit = (TextView) pyT.e(view, R.id.start_limit, "field 'startLimit'", TextView.class);
|
|
setLimitView.endLimit = (TextView) pyT.e(view, R.id.end_limit, "field 'endLimit'", TextView.class);
|
|
}
|
|
|
|
@Override // butterknife.Unbinder
|
|
public final void a() {
|
|
SetLimitView setLimitView = this.d;
|
|
if (setLimitView == null) {
|
|
throw new IllegalStateException("Bindings already cleared.");
|
|
}
|
|
this.d = null;
|
|
setLimitView.seekBarLimiter = null;
|
|
setLimitView.startLimit = null;
|
|
setLimitView.endLimit = null;
|
|
}
|
|
}
|