Skip to content
Snippets Groups Projects
Commit f1046078 authored by Diego Fernando Nieto's avatar Diego Fernando Nieto Committed by Jean-Baptiste Kempf
Browse files

License: fix code style

parent 4074ef1e
No related branches found
No related tags found
No related merge requests found
......@@ -41,8 +41,8 @@ class LicenceActivity : FragmentActivity() {
if (url.contains("file://")) {
view.loadUrl(url)
} else {
val i = Intent(Intent.ACTION_VIEW, Uri.parse(url))
startActivity(i)
val intent = Intent(Intent.ACTION_VIEW, Uri.parse(url))
startActivity(intent)
}
return true
}
......
......@@ -108,8 +108,8 @@ class AboutFragment : Fragment() {
if (url.contains("file://")) {
view.loadUrl(url)
} else {
val i = Intent(Intent.ACTION_VIEW, Uri.parse(url))
startActivity(i)
val intent = Intent(Intent.ACTION_VIEW, Uri.parse(url))
startActivity(intent)
}
return true
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment