Updated gradle plugin

This commit is contained in:
Karim Abou Zeid 2016-02-18 19:00:58 +01:00
commit 0cc82a9da4
2 changed files with 2 additions and 3 deletions

View file

@ -32,7 +32,6 @@ import java.util.List;
*/ */
public class SortedCursor extends AbstractCursor { public class SortedCursor extends AbstractCursor {
// cursor to wrap // cursor to wrap
@Nullable
private final Cursor mCursor; private final Cursor mCursor;
// the map of external indices to internal indices // the map of external indices to internal indices
private ArrayList<Integer> mOrderedPositions; private ArrayList<Integer> mOrderedPositions;
@ -48,7 +47,7 @@ public class SortedCursor extends AbstractCursor {
* @param order the list of unique ids in sorted order to display * @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 * @param columnName the column name of the id to look up in the internal cursor
*/ */
public SortedCursor(@Nullable final Cursor cursor, final long[] order, final String columnName, public SortedCursor(final Cursor cursor, final long[] order, final String columnName,
final List<?> extraData) { final List<?> extraData) {
if (cursor == null) { if (cursor == null) {
throw new IllegalArgumentException("Non-null cursor is needed"); throw new IllegalArgumentException("Non-null cursor is needed");

View file

@ -3,7 +3,7 @@ buildscript {
jcenter() jcenter()
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:2.0.0-beta2' classpath 'com.android.tools.build:gradle:2.0.0-beta4'
classpath 'com.github.triplet.gradle:play-publisher:1.1.3' classpath 'com.github.triplet.gradle:play-publisher:1.1.3'
} }
} }