From d8d945a86bdc934e98dda81ac566ef238b7821d2 Mon Sep 17 00:00:00 2001 From: Damyan Ivanov Date: Fri, 10 Jul 2020 18:45:20 +0300 Subject: [PATCH] whitespace --- .../mobileledger/model/MobileLedgerProfile.java | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/app/src/main/java/net/ktnx/mobileledger/model/MobileLedgerProfile.java b/app/src/main/java/net/ktnx/mobileledger/model/MobileLedgerProfile.java index 2a603d7d..65dd1108 100644 --- a/app/src/main/java/net/ktnx/mobileledger/model/MobileLedgerProfile.java +++ b/app/src/main/java/net/ktnx/mobileledger/model/MobileLedgerProfile.java @@ -294,13 +294,11 @@ public final class MobileLedgerProfile { db.execSQL("DELETE from transaction_accounts WHERE profile = ? and transaction_id=?", new Object[]{uuid, tr.getId()}); - db.execSQL( - "INSERT INTO transactions(profile, id, year, month, day, description, "+ - "comment, data_hash, keep) " + - "values(?,?,?,?,?,?,?,?,1)", + db.execSQL("INSERT INTO transactions(profile, id, year, month, day, description, " + + "comment, data_hash, keep) values(?,?,?,?,?,?,?,?,1)", new Object[]{uuid, tr.getId(), tr.getDate().year, tr.getDate().month, - tr.getDate().day, tr.getDescription(), - tr.getComment(), tr.getDataHash() + tr.getDate().day, tr.getDescription(), tr.getComment(), + tr.getDataHash() }); for (LedgerTransactionAccount item : tr.getAccounts()) { @@ -407,7 +405,8 @@ public final class MobileLedgerProfile { try (Cursor cursor = db.rawQuery("SELECT a.expanded, (select 1 from accounts a2 " + "where a2.profile = a.profile and a2.name like a" + ".name||':%' limit 1) " + - "FROM accounts a WHERE a.profile = ? and a.name=?", new String[]{uuid, accName})) + "FROM accounts a WHERE a.profile = ? and a.name=?", + new String[]{uuid, accName})) { if (cursor.moveToFirst()) { LedgerAccount acc = new LedgerAccount(accName); -- 2.39.2