mirror of
https://github.com/nextcloud/android.git
synced 2024-11-29 10:49:04 +03:00
fix codacy comments
Signed-off-by: Jens Mueller <tschenser@gmx.de>
This commit is contained in:
parent
e15f8fbc6c
commit
cae0e77267
1 changed files with 1 additions and 1 deletions
|
@ -201,7 +201,7 @@ public class DocumentsStorageProvider extends DocumentsProvider {
|
|||
|
||||
int accessMode = ParcelFileDescriptor.parseMode(mode);
|
||||
|
||||
boolean needsDownload = (accessMode != ParcelFileDescriptor.MODE_WRITE_ONLY);
|
||||
boolean needsDownload = accessMode != ParcelFileDescriptor.MODE_WRITE_ONLY;
|
||||
if (needsDownload && ocFile.isDown()) {
|
||||
RemoteOperationResult result = new ReadFileRemoteOperation(ocFile.getRemotePath())
|
||||
.execute(document.getClient());
|
||||
|
|
Loading…
Reference in a new issue