Last active
September 17, 2017 05:42
-
-
Save ShikherVerma/a17841f61c20761dc60381eb2b14a8d5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private static Unbinder createBinding(@NonNull Object target, @NonNull View source) { | |
Class<?> targetClass = target.getClass(); | |
if (debug) Log.d(TAG, "Looking up binding for " + targetClass.getName()); | |
Constructor<? extends Unbinder> constructor = findBindingConstructorForClass(targetClass); | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment