Fixing nullable problems

This commit is contained in:
anthony restaino 2017-03-26 20:08:22 -04:00
parent 3e6c228bba
commit 826ca9118e
2 changed files with 2 additions and 2 deletions

View File

@ -447,7 +447,7 @@ public class BookmarkManager {
*
* @return the current folder
*/
@Nullable
@NonNull
public String getCurrentFolder() {
return mCurrentFolder;
}

View File

@ -63,7 +63,7 @@ public class HistoryItem implements Comparable<HistoryItem> {
this.mImageId = id;
}
public void setBitmap(Bitmap image) {
public void setBitmap(@Nullable Bitmap image) {
mBitmap = image;
}