mirror of
https://github.com/moparisthebest/davmail
synced 2025-01-05 18:58:02 -05:00
Fixes from audit
git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@1915 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
parent
268a713446
commit
ad94b01356
@ -37,13 +37,13 @@ import java.util.Map;
|
||||
public class ExchangePropFindMethod extends ExchangeDavMethod {
|
||||
protected static final Logger LOGGER = Logger.getLogger(ExchangePropFindMethod.class);
|
||||
|
||||
protected DavPropertyNameSet propertyNameSet;
|
||||
protected final DavPropertyNameSet propertyNameSet;
|
||||
|
||||
public ExchangePropFindMethod(String uri) throws IOException {
|
||||
public ExchangePropFindMethod(String uri) {
|
||||
this(uri, null, DepthHeader.DEPTH_INFINITY);
|
||||
}
|
||||
|
||||
public ExchangePropFindMethod(String uri, DavPropertyNameSet propertyNameSet, int depth) throws IOException {
|
||||
public ExchangePropFindMethod(String uri, DavPropertyNameSet propertyNameSet, int depth) {
|
||||
super(uri);
|
||||
this.propertyNameSet = propertyNameSet;
|
||||
DepthHeader dh = new DepthHeader(depth);
|
||||
|
@ -38,9 +38,9 @@ import java.util.Map;
|
||||
public class ExchangeSearchMethod extends ExchangeDavMethod {
|
||||
protected static final Logger LOGGER = Logger.getLogger(ExchangeSearchMethod.class);
|
||||
|
||||
protected String searchRequest;
|
||||
protected final String searchRequest;
|
||||
|
||||
public ExchangeSearchMethod(String uri, String searchRequest) throws IOException {
|
||||
public ExchangeSearchMethod(String uri, String searchRequest) {
|
||||
super(uri);
|
||||
this.searchRequest = searchRequest;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user