Skip to content

Commit a70b71f

Browse files
use latest dav4jvm release
Signed-off-by: tobiasKaminsky <[email protected]>
1 parent 684d1e1 commit a70b71f

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

library/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ configurations {
5050
dependencies {
5151
implementation 'org.apache.jackrabbit:jackrabbit-webdav:2.13.5'
5252
api 'com.squareup.okhttp3:okhttp:5.0.0-alpha.10'
53-
implementation 'com.github.bitfireAT:dav4jvm:main-SNAPSHOT'
53+
implementation 'com.github.bitfireAT:dav4jvm:2.2'
5454
// in transition phase, we use old and new libs
5555
implementation group: 'com.google.code.gson', name: 'gson', version: '2.9.1'
5656
implementation 'androidx.annotation:annotation:1.5.0'

library/src/main/java/com/owncloud/android/lib/resources/files/SearchRemoteOperation.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,6 @@ public RemoteOperationResult run(NextcloudClient client) {
216216
HttpUrl.get(client.getDavUri().toString()))
217217
.search(searchString, (response, hrefRelation) -> {
218218
responses.add(response);
219-
return null;
220219
});
221220

222221
// get data from remote folder

library/src/main/java/com/owncloud/android/lib/resources/files/ToggleFavoriteRemoteOperation.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,6 @@ public RemoteOperationResult run(NextcloudClient client) {
140140
HttpUrl.get(fullFilePath))
141141
.proppatch(newProperties, removeProperties, (response, hrefRelation) -> {
142142
//resultCode = response.isSuccess();
143-
return null;
144143
});
145144

146145
result = new RemoteOperationResult<>(RemoteOperationResult.ResultCode.OK);

0 commit comments

Comments
 (0)