Clean ups and refactoring.

This commit is contained in:
Karim Abou Zeid 2016-03-23 01:52:17 +01:00
commit 73d613d11d
32 changed files with 239 additions and 295 deletions

View file

@ -24,8 +24,6 @@ import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import hugo.weaving.DebugLog;
/**
* This cursor basically wraps a song cursor and is given a list of the order of the ids of the
* contents of the cursor. It wraps the Cursor and simulates the internal cursor being sorted
@ -46,7 +44,6 @@ public class SortedCursor extends AbstractCursor {
* @param order the list of unique ids in sorted order to display
* @param columnName the column name of the id to look up in the internal cursor
*/
@DebugLog
public SortedCursor(@NonNull final Cursor cursor, @Nullable final String[] order, final String columnName) {
mCursor = cursor;
mMissingValues = buildCursorPositionMapping(order, columnName);