Skip to content

Commit 1e0ed6b

Browse files
author
Fabrice Di Meglio
committed
Fix missing @hide on ViewGroup.resolveLayoutParams()
- as we dont need this to be public Change-Id: Ib8de262eec26d4785b13875d59599369b06a067d
1 parent 3cb8d26 commit 1e0ed6b

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

api/current.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25642,7 +25642,6 @@ package android.view {
2564225642
method public void requestDisallowInterceptTouchEvent(boolean);
2564325643
method public boolean requestSendAccessibilityEvent(android.view.View, android.view.accessibility.AccessibilityEvent);
2564425644
method public void requestTransparentRegion(android.view.View);
25645-
method public void resolveLayoutParams();
2564625645
method public void scheduleLayoutAnimation();
2564725646
method public void setAddStatesFromChildren(boolean);
2564825647
method public void setAlwaysDrawnWithCacheEnabled(boolean);

core/java/android/view/ViewGroup.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5358,6 +5358,9 @@ protected void resolveDrawables() {
53585358
}
53595359
}
53605360

5361+
/**
5362+
* @hide
5363+
*/
53615364
@Override
53625365
public void resolveLayoutParams() {
53635366
super.resolveLayoutParams();

0 commit comments

Comments
 (0)