mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-27 12:53:55 +01:00
Improve string formatting in OkHttpJsonApiClient.java (#5916)
This commit is contained in:
parent
7c826502b6
commit
f011abef1d
1 changed files with 2 additions and 2 deletions
|
|
@ -285,7 +285,7 @@ public class OkHttpJsonApiClient {
|
||||||
throws Exception {
|
throws Exception {
|
||||||
|
|
||||||
Timber.d("Fetching nearby items at radius %s", radius);
|
Timber.d("Fetching nearby items at radius %s", radius);
|
||||||
Timber.d("CUSTOM_SPARQL%s", String.valueOf(customQuery != null));
|
Timber.d("CUSTOM_SPARQL: %s", String.valueOf(customQuery != null));
|
||||||
final String wikidataQuery;
|
final String wikidataQuery;
|
||||||
if (customQuery != null) {
|
if (customQuery != null) {
|
||||||
wikidataQuery = customQuery;
|
wikidataQuery = customQuery;
|
||||||
|
|
@ -344,7 +344,7 @@ public class OkHttpJsonApiClient {
|
||||||
final boolean shouldQueryForMonuments, final String customQuery)
|
final boolean shouldQueryForMonuments, final String customQuery)
|
||||||
throws Exception {
|
throws Exception {
|
||||||
|
|
||||||
Timber.d("CUSTOM_SPARQL%s", String.valueOf(customQuery != null));
|
Timber.d("CUSTOM_SPARQL: %s", String.valueOf(customQuery != null));
|
||||||
|
|
||||||
final String wikidataQuery;
|
final String wikidataQuery;
|
||||||
if (customQuery != null) {
|
if (customQuery != null) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue