File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
src/main/java/com/squareup/workflow1/ui Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ public final class com/squareup/workflow1/ui/EnvironmentScreen : com/squareup/wo
45
45
public synthetic fun map (Lkotlin/jvm/functions/Function1;)Lcom/squareup/workflow1/ui/Container;
46
46
public fun map (Lkotlin/jvm/functions/Function1;)Lcom/squareup/workflow1/ui/EnvironmentScreen;
47
47
public synthetic fun map (Lkotlin/jvm/functions/Function1;)Lcom/squareup/workflow1/ui/Wrapper;
48
+ public fun toString ()Ljava/lang/String;
48
49
}
49
50
50
51
public final class com/squareup/workflow1/ui/EnvironmentScreenKt {
Original file line number Diff line number Diff line change @@ -14,6 +14,11 @@ public class EnvironmentScreen<out C : Screen>(
14
14
) : Wrapper<Screen, C>, Screen {
15
15
override fun <D : Screen > map (transform : (C ) -> D ): EnvironmentScreen <D > =
16
16
EnvironmentScreen (transform(content), environment)
17
+
18
+ override fun toString (): String = " EnvironmentScreen(" +
19
+ " content key=${Compatible .keyFor(content)} , " +
20
+ " environment=$environment " +
21
+ " )"
17
22
}
18
23
19
24
/* *
You can’t perform that action at this time.
0 commit comments