mirror of
https://github.com/oxen-io/session-android.git
synced 2025-06-08 08:28:34 +00:00
Reduce verbosity of KeyboardAwareLinearLayout logs.
This commit is contained in:
parent
d21782696a
commit
daf93c473b
@ -130,10 +130,8 @@ public class KeyboardAwareLinearLayout extends LinearLayoutCompat {
|
|||||||
Rect insets = (Rect)stableInsetsField.get(attachInfo);
|
Rect insets = (Rect)stableInsetsField.get(attachInfo);
|
||||||
return insets.bottom;
|
return insets.bottom;
|
||||||
}
|
}
|
||||||
} catch (NoSuchFieldException nsfe) {
|
} catch (NoSuchFieldException | IllegalAccessException e) {
|
||||||
Log.w(TAG, "field reflection error when measuring view inset", nsfe);
|
// Do nothing
|
||||||
} catch (IllegalAccessException iae) {
|
|
||||||
Log.w(TAG, "access reflection error when measuring view inset", iae);
|
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user