40 lines
1.8 KiB
Java
40 lines
1.8 KiB
Java
package com.scb.phone.view.custom.common;
|
|
|
|
import android.view.View;
|
|
import android.widget.ImageButton;
|
|
import android.widget.RelativeLayout;
|
|
import android.widget.TextView;
|
|
import butterknife.Unbinder;
|
|
import com.scb.phone.R;
|
|
import o.pyT;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public class CustomDeltaInput_ViewBinding implements Unbinder {
|
|
private CustomDeltaInput b;
|
|
|
|
public CustomDeltaInput_ViewBinding(CustomDeltaInput customDeltaInput, View view) {
|
|
this.b = customDeltaInput;
|
|
customDeltaInput.inputValue = (AmountEditText) pyT.e(view, R.id.custom_input_value, "field 'inputValue'", AmountEditText.class);
|
|
customDeltaInput.increaseButton = (ImageButton) pyT.e(view, R.id.button_increase, "field 'increaseButton'", ImageButton.class);
|
|
customDeltaInput.decreaseButton = (ImageButton) pyT.e(view, R.id.button_decrease, "field 'decreaseButton'", ImageButton.class);
|
|
customDeltaInput.errorMessage = (TextView) pyT.e(view, R.id.custom_error_message, "field 'errorMessage'", TextView.class);
|
|
customDeltaInput.limitMessage = (TextView) pyT.e(view, R.id.custom_limit_message, "field 'limitMessage'", TextView.class);
|
|
customDeltaInput.container = (RelativeLayout) pyT.e(view, R.id.container, "field 'container'", RelativeLayout.class);
|
|
}
|
|
|
|
@Override // butterknife.Unbinder
|
|
public final void a() {
|
|
CustomDeltaInput customDeltaInput = this.b;
|
|
if (customDeltaInput == null) {
|
|
throw new IllegalStateException("Bindings already cleared.");
|
|
}
|
|
this.b = null;
|
|
customDeltaInput.inputValue = null;
|
|
customDeltaInput.increaseButton = null;
|
|
customDeltaInput.decreaseButton = null;
|
|
customDeltaInput.errorMessage = null;
|
|
customDeltaInput.limitMessage = null;
|
|
customDeltaInput.container = null;
|
|
}
|
|
}
|