Remove trailing semicolons in code.

This commit is contained in:
azuo 2021-09-03 20:54:02 +08:00
parent 80d1077dab
commit 8c84913cd8

View File

@ -57,7 +57,7 @@ class LocationService : Service() {
android.location.LocationManager.PASSIVE_PROVIDER
)) {
if (lm.isProviderEnabled(provider)) {
location = lm.getLastKnownLocation(provider);
location = lm.getLastKnownLocation(provider)
if (location != null) break
}
}