diff options
| author | 2018-08-21 08:54:59 -0700 | |
|---|---|---|
| committer | 2018-08-21 08:54:59 -0700 | |
| commit | a16013513d3e365cc0db53777800598a4cf4d77b (patch) | |
| tree | 884196ff10066bc3655fabb230a7bc8e1fe61fa9 | |
| parent | b30ace1050f55855a2646e688eab7590524bf753 (diff) | |
| parent | 6b9e65bea3d968ed2d7e8407cd7d21c31b9a8d6f (diff) | |
Merge "Code reformatting for upcoming automated code changes." am: 3b2cd9244d am: 0c875607f0
am: 6b9e65bea3
Change-Id: I5ca0de51793f574d7dc54b16e5427673bc5950f9
| -rw-r--r-- | core/java/android/transition/Scene.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/core/java/android/transition/Scene.java b/core/java/android/transition/Scene.java index 15ad7deb4b24..2c858cde17a4 100644 --- a/core/java/android/transition/Scene.java +++ b/core/java/android/transition/Scene.java @@ -35,7 +35,8 @@ public final class Scene { private int mLayoutId = -1; private ViewGroup mSceneRoot; private View mLayout; // alternative to layoutId - Runnable mEnterAction, mExitAction; + Runnable mEnterAction; + Runnable mExitAction; /** * Returns a Scene described by the resource file associated with the given @@ -265,4 +266,4 @@ public final class Scene { boolean isCreatedFromLayoutResource() { return (mLayoutId > 0); } -}
\ No newline at end of file +} |