X-Git-Url: https://git.ktnx.net/?p=mobile-ledger-staging.git;a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fnet%2Fktnx%2Fmobileledger%2Fjson%2FAccountListParser.java;h=872cac79c7828f6dd06a637431aaa7f36a2dbfab;hp=783142e5df0985de21994c24e80ecf140afa66c8;hb=bb789332571609eeb1bef6e39b7ad359227d1045;hpb=28049f2a891665fd03f19617292236cb50ab4622 diff --git a/app/src/main/java/net/ktnx/mobileledger/json/AccountListParser.java b/app/src/main/java/net/ktnx/mobileledger/json/AccountListParser.java index 783142e5..872cac79 100644 --- a/app/src/main/java/net/ktnx/mobileledger/json/AccountListParser.java +++ b/app/src/main/java/net/ktnx/mobileledger/json/AccountListParser.java @@ -20,7 +20,6 @@ package net.ktnx.mobileledger.json; import com.fasterxml.jackson.databind.MappingIterator; import net.ktnx.mobileledger.async.RetrieveTransactionsTask; -import net.ktnx.mobileledger.async.SendTransactionTask; import net.ktnx.mobileledger.model.LedgerAccount; import java.io.IOException; @@ -31,8 +30,8 @@ import static net.ktnx.mobileledger.utils.Logger.debug; abstract public class AccountListParser { protected MappingIterator iterator; - public static AccountListParser forApiVersion(SendTransactionTask.API version, - InputStream input) throws IOException { + public static AccountListParser forApiVersion(API version, InputStream input) + throws IOException { switch (version) { case v1_14: return new net.ktnx.mobileledger.json.v1_14.AccountListParser(input); @@ -45,7 +44,7 @@ abstract public class AccountListParser { } } - public abstract SendTransactionTask.API getApiVersion(); + public abstract API getApiVersion(); public LedgerAccount nextAccount(RetrieveTransactionsTask task, HashMap map) { if (!iterator.hasNext())