Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class NearbyFilterState {
private int checkBoxTriState;
private ArrayList<Label> selectedLabels;

private static NearbyFilterState nearbyFılterStateInstance;
private static NearbyFilterState nearbyFilterStateInstance;

/**
* Define initial filter values here
Expand All @@ -23,10 +23,10 @@ private NearbyFilterState() {
}

public static NearbyFilterState getInstance() {
if (nearbyFılterStateInstance == null) {
nearbyFılterStateInstance = new NearbyFilterState();
if (nearbyFilterStateInstance == null) {
nearbyFilterStateInstance = new NearbyFilterState();
}
return nearbyFılterStateInstance;
return nearbyFilterStateInstance;
}

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