Skip to content

Instantly share code, notes, and snippets.

@krossovochkin
Created February 17, 2019 11:07
Show Gist options
  • Save krossovochkin/bc34569049965ed1dd82b501297c77d6 to your computer and use it in GitHub Desktop.
Save krossovochkin/bc34569049965ed1dd82b501297c77d6 to your computer and use it in GitHub Desktop.
public final class ButterKnifeAcivity_ViewBinding implements Unbinder {
private ButterKnifeAcivity target;
@UiThread
public ButterKnifeAcivity_ViewBinding(ButterKnifeAcivity target) {
this(target, target.getWindow().getDecorView());
}
@UiThread
public ButterKnifeAcivity_ViewBinding(ButterKnifeAcivity target, View source) {
this.target = target;
target.textView = Utils.findRequiredViewAsType(source, R.id.textView, "field 'textView'", TextView.class);
}
@Override
public void unbind() {
ButterKnifeAcivity target = this.target;
if (target == null) throw new IllegalStateException("Bindings already cleared.");
this.target = null;
target.textView = null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment