Skip to content

Commit eeac7c0

Browse files
LylaAsser
authored andcommitted
Bug: re-run flatten after updating L5a base code
1 parent 63b76ed commit eeac7c0

File tree

4 files changed

+4
-4
lines changed
  • Lesson05a-Android-Lifecycle
    • T05a.02-Exercise-PersistData/app/src/main/java/com/example/android/lifecycle
    • T05a.02-Solution-PersistData/app/src/main/java/com/example/android/lifecycle
    • T05a.03-Exercise-FixLifecycleDisplayBug/app/src/main/java/com/example/android/lifecycle
    • T05a.03-Solution-FixLifecycleDisplayBug/app/src/main/java/com/example/android/lifecycle

4 files changed

+4
-4
lines changed

Lesson05a-Android-Lifecycle/T05a.02-Exercise-PersistData/app/src/main/java/com/example/android/lifecycle/MainActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ protected void onRestart() {
123123

124124
logAndAppend(ON_RESTART);
125125
}
126-
126+
127127
/**
128128
* The final call you receive before your activity is destroyed. This can happen either because
129129
* the activity is finishing (someone called finish() on it, or because the system is

Lesson05a-Android-Lifecycle/T05a.02-Solution-PersistData/app/src/main/java/com/example/android/lifecycle/MainActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ protected void onRestart() {
143143

144144
logAndAppend(ON_RESTART);
145145
}
146-
146+
147147
/**
148148
* The final call you receive before your activity is destroyed. This can happen either because
149149
* the activity is finishing (someone called finish() on it, or because the system is

Lesson05a-Android-Lifecycle/T05a.03-Exercise-FixLifecycleDisplayBug/app/src/main/java/com/example/android/lifecycle/MainActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ protected void onRestart() {
149149

150150
logAndAppend(ON_RESTART);
151151
}
152-
152+
153153
/**
154154
* The final call you receive before your activity is destroyed. This can happen either because
155155
* the activity is finishing (someone called finish() on it, or because the system is

Lesson05a-Android-Lifecycle/T05a.03-Solution-FixLifecycleDisplayBug/app/src/main/java/com/example/android/lifecycle/MainActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ protected void onRestart() {
183183

184184
logAndAppend(ON_RESTART);
185185
}
186-
186+
187187
/**
188188
* The final call you receive before your activity is destroyed. This can happen either because
189189
* the activity is finishing (someone called finish() on it, or because the system is

0 commit comments

Comments
 (0)