Annotate method parameters, lint fixes
This commit is contained in:
parent
04e0d5650f
commit
dcd042b9d5
@ -89,7 +89,7 @@ public class HistoryDatabase extends SQLiteOpenHelper {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public synchronized void deleteHistoryItem(String url) {
|
public synchronized void deleteHistoryItem(@NonNull String url) {
|
||||||
openIfNecessary();
|
openIfNecessary();
|
||||||
mDatabase.delete(TABLE_HISTORY, KEY_URL + " = ?", new String[]{url});
|
mDatabase.delete(TABLE_HISTORY, KEY_URL + " = ?", new String[]{url});
|
||||||
}
|
}
|
||||||
@ -118,7 +118,7 @@ public class HistoryDatabase extends SQLiteOpenHelper {
|
|||||||
mDatabase.insert(TABLE_HISTORY, null, values);
|
mDatabase.insert(TABLE_HISTORY, null, values);
|
||||||
}
|
}
|
||||||
|
|
||||||
synchronized String getHistoryItem(String url) {
|
synchronized String getHistoryItem(@NonNull String url) {
|
||||||
openIfNecessary();
|
openIfNecessary();
|
||||||
Cursor cursor = mDatabase.query(TABLE_HISTORY, new String[]{KEY_ID, KEY_URL, KEY_TITLE},
|
Cursor cursor = mDatabase.query(TABLE_HISTORY, new String[]{KEY_ID, KEY_URL, KEY_TITLE},
|
||||||
KEY_URL + " = ?", new String[]{url}, null, null, null, null);
|
KEY_URL + " = ?", new String[]{url}, null, null, null, null);
|
||||||
@ -158,6 +158,7 @@ public class HistoryDatabase extends SQLiteOpenHelper {
|
|||||||
return itemList;
|
return itemList;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
public synchronized List<HistoryItem> getLastHundredItems() {
|
public synchronized List<HistoryItem> getLastHundredItems() {
|
||||||
openIfNecessary();
|
openIfNecessary();
|
||||||
List<HistoryItem> itemList = new ArrayList<>(100);
|
List<HistoryItem> itemList = new ArrayList<>(100);
|
||||||
@ -180,6 +181,7 @@ public class HistoryDatabase extends SQLiteOpenHelper {
|
|||||||
return itemList;
|
return itemList;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
public synchronized List<HistoryItem> getAllHistoryItems() {
|
public synchronized List<HistoryItem> getAllHistoryItems() {
|
||||||
openIfNecessary();
|
openIfNecessary();
|
||||||
List<HistoryItem> itemList = new ArrayList<>();
|
List<HistoryItem> itemList = new ArrayList<>();
|
||||||
|
@ -209,7 +209,7 @@ public class SearchAdapter extends BaseAdapter implements Filterable {
|
|||||||
|
|
||||||
private static class ClearCacheRunnable implements Runnable {
|
private static class ClearCacheRunnable implements Runnable {
|
||||||
|
|
||||||
private Application app;
|
private final Application app;
|
||||||
|
|
||||||
public ClearCacheRunnable(Application app) {
|
public ClearCacheRunnable(Application app) {
|
||||||
this.app = app;
|
this.app = app;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user