This commit is contained in:
Jan Berkel 2014-12-12 15:19:13 +00:00
parent b644194a3d
commit 54d62eb7b9
1 changed files with 2 additions and 2 deletions

View File

@ -43,8 +43,8 @@ public class WebDavTransport extends Transport {
private WebDavStore store;
public WebDavTransport(StoreConfig configInterface) throws MessagingException {
store = new WebDavStore(configInterface);
public WebDavTransport(StoreConfig storeConfig) throws MessagingException {
store = new WebDavStore(storeConfig);
if (K9.DEBUG)
Log.d(K9.LOG_TAG, ">>> New WebDavTransport creation complete");