diff --git a/app/src/main/java/org/gnucash/android/db/adapter/AccountsDbAdapter.java b/app/src/main/java/org/gnucash/android/db/adapter/AccountsDbAdapter.java
index e19138306..f5d43e25d 100644
--- a/app/src/main/java/org/gnucash/android/db/adapter/AccountsDbAdapter.java
+++ b/app/src/main/java/org/gnucash/android/db/adapter/AccountsDbAdapter.java
@@ -731,20 +731,21 @@ public Cursor fetchAccounts(@Nullable String where, @Nullable String[] whereArgs
null, where, whereArgs, null, null,
orderBy);
}
-
- /**
- * Returns a Cursor set of accounts which fulfill where
- *
This method returns the accounts list sorted by the full account name
- * @param where SQL WHERE statement without the 'WHERE' itself - * @param whereArgs where args - * @return Cursor set of accounts which fulfillwhere
- */
- public Cursor fetchAccountsOrderedByFullName(String where, String[] whereArgs) {
- Log.v(LOG_TAG, "Fetching all accounts from db where " + where);
- return mDb.query(AccountEntry.TABLE_NAME,
- null, where, whereArgs, null, null,
- AccountEntry.COLUMN_FULL_NAME + " ASC");
- }
+
+ // #869
+// /**
+// * Returns a Cursor set of accounts which fulfill where
+// * This method returns the accounts list sorted by the full account name
+// * @param where SQL WHERE statement without the 'WHERE' itself +// * @param whereArgs where args +// * @return Cursor set of accounts which fulfillwhere
+// */
+// public Cursor fetchAccountsOrderedByFullName(String where, String[] whereArgs) {
+// Log.v(LOG_TAG, "Fetching all accounts from db where " + where);
+// return mDb.query(AccountEntry.TABLE_NAME,
+// null, where, whereArgs, null, null,
+// AccountEntry.COLUMN_FULL_NAME + " ASC");
+// }
/**
* Returns a Cursor set of accounts which fulfill where