Debug instead of warning

This commit is contained in:
serso 2016-02-07 19:37:34 +01:00
parent 01ef5838d3
commit 8c1143cb8f

View File

@ -72,7 +72,7 @@ public class EditTextCompat extends EditText {
setShowSoftInputOnFocusMethod = EditText.class.getMethod("setShowSoftInputOnFocus", boolean.class);
setShowSoftInputOnFocusMethod.setAccessible(true);
} catch (NoSuchMethodException e) {
Log.w("EditTextCompat", e.getMessage(), e);
Log.d("EditTextCompat", "setShowSoftInputOnFocus was not found...");
}
return setShowSoftInputOnFocusMethod;
}