@@ -731,20 +731,21 @@ public Cursor fetchAccounts(@Nullable String where, @Nullable String[] whereArgs
731
731
null , where , whereArgs , null , null ,
732
732
orderBy );
733
733
}
734
-
735
- /**
736
- * Returns a Cursor set of accounts which fulfill <code>where</code>
737
- * <p>This method returns the accounts list sorted by the full account name</p>
738
- * @param where SQL WHERE statement without the 'WHERE' itself
739
- * @param whereArgs where args
740
- * @return Cursor set of accounts which fulfill <code>where</code>
741
- */
742
- public Cursor fetchAccountsOrderedByFullName (String where , String [] whereArgs ) {
743
- Log .v (LOG_TAG , "Fetching all accounts from db where " + where );
744
- return mDb .query (AccountEntry .TABLE_NAME ,
745
- null , where , whereArgs , null , null ,
746
- AccountEntry .COLUMN_FULL_NAME + " ASC" );
747
- }
734
+
735
+ // #869
736
+ // /**
737
+ // * Returns a Cursor set of accounts which fulfill <code>where</code>
738
+ // * <p>This method returns the accounts list sorted by the full account name</p>
739
+ // * @param where SQL WHERE statement without the 'WHERE' itself
740
+ // * @param whereArgs where args
741
+ // * @return Cursor set of accounts which fulfill <code>where</code>
742
+ // */
743
+ // public Cursor fetchAccountsOrderedByFullName(String where, String[] whereArgs) {
744
+ // Log.v(LOG_TAG, "Fetching all accounts from db where " + where);
745
+ // return mDb.query(AccountEntry.TABLE_NAME,
746
+ // null, where, whereArgs, null, null,
747
+ // AccountEntry.COLUMN_FULL_NAME + " ASC");
748
+ // }
748
749
749
750
/**
750
751
* Returns a Cursor set of accounts which fulfill <code>where</code>
0 commit comments