Skip to content

Commit 3e2e550

Browse files
committed
Formatting.
1 parent 2fc102a commit 3e2e550

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

webdav/src/main/java/ch/cyberduck/core/dav/DAVAttributesFinderFeature.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -155,8 +155,7 @@ public PathAttributes toAttributes(final DavResource resource) {
155155
final Date server = rfc1123.parse(svalue);
156156
if(server.equals(resource.getModified())) {
157157
// file not touched with a different client
158-
attributes.setModificationDate(
159-
rfc1123.parse(value).getTime());
158+
attributes.setModificationDate(rfc1123.parse(value).getTime());
160159
}
161160
else {
162161
// file touched with a different client, use default modified date from server
@@ -173,8 +172,7 @@ public PathAttributes toAttributes(final DavResource resource) {
173172
}
174173
}
175174
else {
176-
attributes.setModificationDate(
177-
rfc1123.parse(value).getTime());
175+
attributes.setModificationDate(rfc1123.parse(value).getTime());
178176
}
179177
}
180178
catch(InvalidDateException e) {

0 commit comments

Comments
 (0)