Fixing nullable problems
This commit is contained in:
parent
3e6c228bba
commit
826ca9118e
@ -447,7 +447,7 @@ public class BookmarkManager {
|
|||||||
*
|
*
|
||||||
* @return the current folder
|
* @return the current folder
|
||||||
*/
|
*/
|
||||||
@Nullable
|
@NonNull
|
||||||
public String getCurrentFolder() {
|
public String getCurrentFolder() {
|
||||||
return mCurrentFolder;
|
return mCurrentFolder;
|
||||||
}
|
}
|
||||||
|
@ -63,7 +63,7 @@ public class HistoryItem implements Comparable<HistoryItem> {
|
|||||||
this.mImageId = id;
|
this.mImageId = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setBitmap(Bitmap image) {
|
public void setBitmap(@Nullable Bitmap image) {
|
||||||
mBitmap = image;
|
mBitmap = image;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user