Skip to content

Commit

Permalink
Minor refactoring: rename a field
Browse files Browse the repository at this point in the history
  • Loading branch information
rt1shnik committed Feb 6, 2020
1 parent c4d8d3d commit e988126
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ private class DavProperties {
//final List<QName> supportedReports;
final Map<QName, String> customProps;
final Lockdiscovery lockDiscovery;
final Supportedlock supportedlock;
final Supportedlock supportedLock;

DavProperties(Date creation, Date modified, String contentType,
Long contentLength, String etag, String displayName, List<QName> resourceTypes,
Expand All @@ -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) {
Expand All @@ -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);
}
}

Expand Down Expand Up @@ -552,7 +552,7 @@ public Lockdiscovery getLockDiscovery() {
}

public Supportedlock getSupportedlock() {
return this.props.supportedlock;
return this.props.supportedLock;
}

/**
Expand Down

0 comments on commit e988126

Please sign in to comment.