android-kotlin-webview
android-kotlin-webview copied to clipboard
"Redundant override"
This inspection reports redundant 'override' function which can be omitted.
override fun onPageFinished(view: WebView, url: String) {
// TODO Auto-generated method stub
super.onPageFinished(view, url)
}
Kotlin community members guess it may be a lint issue instead of a real problem:
This looks like a Lint issue. [...]