diff options
| author | Mathew Inwood <mathewi@google.com> | 2018-08-16 17:29:31 +0100 |
|---|---|---|
| committer | Mathew Inwood <mathewi@google.com> | 2018-08-16 17:29:31 +0100 |
| commit | 74e7aed9c60e1703f34d054e1f2c91e80f1e7aba (patch) | |
| tree | a9813450035982cd18c420af099f1f8b564d73b3 /core/java/android/widget/RelativeLayout.java | |
| parent | 43f3f60ec01a1d658cbff9386a7fbf8a839894b9 (diff) | |
Code reformatting for upcoming automated code changes.
Adding annotations to individual fields cannot be easily done when there
are two fields defined in a single statement. Put each definition in a
statement of its own.
See go/UnsupportedAppUsage for more context.
Bug: 110868826
Test: m
Change-Id: I7756185bdfdca15fa8f73ef4b76c4f70abcd8ea6
Diffstat (limited to 'core/java/android/widget/RelativeLayout.java')
| -rw-r--r-- | core/java/android/widget/RelativeLayout.java | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/core/java/android/widget/RelativeLayout.java b/core/java/android/widget/RelativeLayout.java index bbdf15c871bb..d1de498d71ed 100644 --- a/core/java/android/widget/RelativeLayout.java +++ b/core/java/android/widget/RelativeLayout.java @@ -1247,7 +1247,10 @@ public class RelativeLayout extends ViewGroup { private int[] mRules = new int[VERB_COUNT]; private int[] mInitialRules = new int[VERB_COUNT]; - private int mLeft, mTop, mRight, mBottom; + private int mLeft; + private int mTop; + private int mRight; + private int mBottom; /** * Whether this view had any relative rules modified following the most |
