mirror of
https://github.com/nextcloud/android.git
synced 2024-11-27 17:46:37 +03:00
Removed check of NULL after code review
This commit is contained in:
parent
30aa3fdfd1
commit
ba694cba7d
1 changed files with 1 additions and 1 deletions
|
@ -226,7 +226,7 @@ public class ShareActivity extends FileActivity
|
|||
public void onGetDataShareWithFinish(RemoteOperationResult result) {
|
||||
// Remove loading
|
||||
dismissLoadingDialog();
|
||||
if (result != null && result.isSuccess()) {
|
||||
if (result.isSuccess()) {
|
||||
Log_OC.d(TAG, "Get Data Share With finishes sucessfully");
|
||||
} // else, ignore and use pre-cached shares in database
|
||||
|
||||
|
|
Loading…
Reference in a new issue