Skip to content

Commit b6457cc

Browse files
authored
Rename an identifier with a non-ASCII character (#6460)
Android Studio reported that there's an identifier with a non-ASCII letter. It was nearbyFılterStateInstance, with a Turkish dotless i. I renamed to ASCII dotted i. This brings the number of Internationalization issues in Inspect Code to zero.
1 parent 2d51a7c commit b6457cc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

app/src/main/java/fr/free/nrw/commons/nearby/NearbyFilterState.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public class NearbyFilterState {
99
private int checkBoxTriState;
1010
private ArrayList<Label> selectedLabels;
1111

12-
private static NearbyFilterState nearbyFılterStateInstance;
12+
private static NearbyFilterState nearbyFilterStateInstance;
1313

1414
/**
1515
* Define initial filter values here
@@ -23,10 +23,10 @@ private NearbyFilterState() {
2323
}
2424

2525
public static NearbyFilterState getInstance() {
26-
if (nearbyFılterStateInstance == null) {
27-
nearbyFılterStateInstance = new NearbyFilterState();
26+
if (nearbyFilterStateInstance == null) {
27+
nearbyFilterStateInstance = new NearbyFilterState();
2828
}
29-
return nearbyFılterStateInstance;
29+
return nearbyFilterStateInstance;
3030
}
3131

3232
public static void setSelectedLabels(ArrayList<Label> selectedLabels) {

0 commit comments

Comments
 (0)