1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-23 18:02:15 -05:00
This commit is contained in:
Jan Berkel 2014-12-12 15:19:13 +00:00
parent b644194a3d
commit 54d62eb7b9

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