Skip to content

Commit aca0d53

Browse files
committed
Fix nullability of Bundle in onSaveInstanceState
1 parent 2737f5f commit aca0d53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/main/kotlin/org/wordpress/aztec/demo/MainActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -519,7 +519,7 @@ open class MainActivity : AppCompatActivity(),
519519
}
520520
}
521521

522-
override fun onSaveInstanceState(outState: Bundle?) {
522+
override fun onSaveInstanceState(outState: Bundle) {
523523
super.onSaveInstanceState(outState)
524524

525525
if (mediaUploadDialog != null && mediaUploadDialog!!.isShowing) {

0 commit comments

Comments
 (0)