From e988126da8b9bdd79f5db6b11e3df4322a1097ba Mon Sep 17 00:00:00 2001 From: Andrei Churyla Date: Thu, 6 Feb 2020 19:09:07 +0300 Subject: [PATCH] Minor refactoring: rename a field --- .../com/thegrizzlylabs/sardineandroid/DavResource.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/com/thegrizzlylabs/sardineandroid/DavResource.java b/src/main/java/com/thegrizzlylabs/sardineandroid/DavResource.java index ec52201..cf41e40 100755 --- a/src/main/java/com/thegrizzlylabs/sardineandroid/DavResource.java +++ b/src/main/java/com/thegrizzlylabs/sardineandroid/DavResource.java @@ -83,7 +83,7 @@ private class DavProperties { //final List supportedReports; final Map customProps; final Lockdiscovery lockDiscovery; - final Supportedlock supportedlock; + final Supportedlock supportedLock; DavProperties(Date creation, Date modified, String contentType, Long contentLength, String etag, String displayName, List resourceTypes, @@ -99,7 +99,7 @@ private class DavProperties { //this.supportedReports = supportedReports; this.customProps = customProps; this.lockDiscovery = null; - this.supportedlock = null; + this.supportedLock = null; } DavProperties(Response response) { @@ -114,7 +114,7 @@ private class DavProperties { //this.supportedReports = getSupportedReports(response); this.customProps = getCustomProps(response); this.lockDiscovery = getLockDiscovery(response); - this.supportedlock = getSupportedLock(response); + this.supportedLock = getSupportedLock(response); } } @@ -552,7 +552,7 @@ public Lockdiscovery getLockDiscovery() { } public Supportedlock getSupportedlock() { - return this.props.supportedlock; + return this.props.supportedLock; } /**