Skip to content

Commit

Permalink
rename document to file in all appearances
Browse files Browse the repository at this point in the history
  • Loading branch information
marecar3 authored and etoledom committed Nov 12, 2020
1 parent 4d2dd5f commit bfceb2c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ public interface OnMediaLibraryButtonListener {
void onCancelUploadForMediaClicked(int mediaId);
void onCancelUploadForMediaDueToDeletedBlock(int mediaId);
ArrayList<MediaOption> onGetOtherMediaImageOptions();
ArrayList<MediaOption> onGetOtherMediaDocumentOptions();
ArrayList<MediaOption> onGetOtherMediaFileOptions();
void onOtherMediaButtonClicked(String mediaSource, boolean allowMultipleSelection);
}

Expand Down Expand Up @@ -354,8 +354,8 @@ public void getOtherMediaPickerOptions(OtherMediaOptionsReceivedCallback otherMe
ArrayList<MediaOption> otherMediaImageOptions = mOnMediaLibraryButtonListener.onGetOtherMediaImageOptions();
otherMediaOptionsReceivedCallback.onOtherMediaOptionsReceived(otherMediaImageOptions);
} else {
ArrayList<MediaOption> otherMediaDocumentOptions = mOnMediaLibraryButtonListener.onGetOtherMediaDocumentOptions();
otherMediaOptionsReceivedCallback.onOtherMediaOptionsReceived(otherMediaDocumentOptions);
ArrayList<MediaOption> otherMediaFileOptions = mOnMediaLibraryButtonListener.onGetOtherMediaFileOptions();
otherMediaOptionsReceivedCallback.onOtherMediaOptionsReceived(otherMediaFileOptions);
}
}

Expand Down

0 comments on commit bfceb2c

Please sign in to comment.