зеркало из https://github.com/nextcloud/android.git
Use single line code for getFileName
Signed-off-by: alperozturk <alper_ozturk@proton.me>
This commit is contained in:
Родитель
6515602ee6
Коммит
0e47ad737f
|
@ -272,11 +272,7 @@ public class UploadFileOperation extends SyncOperation {
|
|||
}
|
||||
|
||||
public String getFileName() {
|
||||
if (mFile == null) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return mFile.getFileName();
|
||||
return (mFile != null) ? mFile.getFileName() : null;
|
||||
}
|
||||
|
||||
public OCFile getFile() {
|
||||
|
|
Загрузка…
Ссылка в новой задаче