mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-28 13:23:58 +01:00
LocationPickerActivity.java: Changed toUpperCase to toUpperCase(Locale.ROOT)
This commit is contained in:
parent
5d9e6f2f13
commit
fe7d481329
1 changed files with 3 additions and 1 deletions
|
|
@ -53,6 +53,7 @@ import fr.free.nrw.commons.utils.SystemThemeUtils;
|
||||||
import io.reactivex.android.schedulers.AndroidSchedulers;
|
import io.reactivex.android.schedulers.AndroidSchedulers;
|
||||||
import io.reactivex.schedulers.Schedulers;
|
import io.reactivex.schedulers.Schedulers;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
import java.util.Locale;
|
||||||
import javax.inject.Inject;
|
import javax.inject.Inject;
|
||||||
import javax.inject.Named;
|
import javax.inject.Named;
|
||||||
import org.osmdroid.tileprovider.tilesource.TileSourceFactory;
|
import org.osmdroid.tileprovider.tilesource.TileSourceFactory;
|
||||||
|
|
@ -301,7 +302,8 @@ public class LocationPickerActivity extends BaseActivity implements
|
||||||
modifyLocationButton = findViewById(R.id.modify_location);
|
modifyLocationButton = findViewById(R.id.modify_location);
|
||||||
removeLocationButton = findViewById(R.id.remove_location);
|
removeLocationButton = findViewById(R.id.remove_location);
|
||||||
showInMapButton = findViewById(R.id.show_in_map);
|
showInMapButton = findViewById(R.id.show_in_map);
|
||||||
showInMapButton.setText(getResources().getString(R.string.show_in_map_app).toUpperCase());
|
showInMapButton.setText(getResources().getString(R.string.show_in_map_app).toUpperCase(
|
||||||
|
Locale.ROOT));
|
||||||
shadow = findViewById(R.id.location_picker_image_view_shadow);
|
shadow = findViewById(R.id.location_picker_image_view_shadow);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue