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:
mguessan 2012-02-16 22:06:13 +00:00
parent 268a713446
commit ad94b01356
2 changed files with 5 additions and 5 deletions

View File

@ -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);

View File

@ -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;
}