mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2024-11-23 11:31:33 +01:00
Make class fields in EditPGN private
This commit is contained in:
parent
bdd577bb93
commit
408cb78272
|
@ -56,24 +56,24 @@ import java.util.ArrayList;
|
|||
import java.util.Locale;
|
||||
|
||||
public abstract class EditPGN extends ListActivity {
|
||||
static ArrayList<GameInfo> gamesInFile = new ArrayList<>();
|
||||
static boolean cacheValid = false;
|
||||
PGNFile pgnFile;
|
||||
ProgressDialog progress;
|
||||
private static ArrayList<GameInfo> gamesInFile = new ArrayList<>();
|
||||
private static boolean cacheValid = false;
|
||||
private PGNFile pgnFile;
|
||||
private ProgressDialog progress;
|
||||
private GameInfo selectedGi = null;
|
||||
ArrayAdapter<GameInfo> aa = null;
|
||||
private ArrayAdapter<GameInfo> aa = null;
|
||||
|
||||
SharedPreferences settings;
|
||||
int defaultItem = 0;
|
||||
String lastSearchString = "";
|
||||
String lastFileName = "";
|
||||
long lastModTime = -1;
|
||||
private SharedPreferences settings;
|
||||
private int defaultItem = 0;
|
||||
private String lastSearchString = "";
|
||||
private String lastFileName = "";
|
||||
private long lastModTime = -1;
|
||||
|
||||
Thread workThread = null;
|
||||
boolean canceled = false;
|
||||
private Thread workThread = null;
|
||||
private boolean canceled = false;
|
||||
|
||||
boolean loadGame; // True when loading game, false when saving
|
||||
String pgnToSave;
|
||||
private boolean loadGame; // True when loading game, false when saving
|
||||
private String pgnToSave;
|
||||
|
||||
private SelectGameBinding binding;
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user