Commit 0f726490 authored by Michael Thomsen's avatar Michael Thomsen Committed by GitHub

Update MainActivity.kt.tmpl (#11033)

Remove terminating semicolons; they are causing an "code inspection warning" in Android Studio:

```
This inspection reports redundant semicolon (';') token which is not required in Kotlin and may be removed.
```
parent 021a9ee2
......@@ -8,6 +8,6 @@ import io.flutter.plugins.GeneratedPluginRegistrant
class MainActivity(): FlutterActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
GeneratedPluginRegistrant.registerWith(this);
GeneratedPluginRegistrant.registerWith(this)
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment