summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/java/android/transition/Scene.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/core/java/android/transition/Scene.java b/core/java/android/transition/Scene.java
index 4267a658c8f9..44b6e1f3269c 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
@@ -267,4 +268,4 @@ public final class Scene {
boolean isCreatedFromLayoutResource() {
return (mLayoutId > 0);
}
-} \ No newline at end of file
+}