Loading core/java/android/content/ContentProviderOperation.java +6 −2 Original line number Diff line number Diff line Loading @@ -545,8 +545,12 @@ public class ContentProviderOperation implements Parcelable { "only updates, deletes, and asserts can have selections"); } mSelection = selection; if (selectionArgs == null) { mSelectionArgs = null; } else { mSelectionArgs = new String[selectionArgs.length]; System.arraycopy(selectionArgs, 0, mSelectionArgs, 0, selectionArgs.length); } return this; } Loading Loading
core/java/android/content/ContentProviderOperation.java +6 −2 Original line number Diff line number Diff line Loading @@ -545,8 +545,12 @@ public class ContentProviderOperation implements Parcelable { "only updates, deletes, and asserts can have selections"); } mSelection = selection; if (selectionArgs == null) { mSelectionArgs = null; } else { mSelectionArgs = new String[selectionArgs.length]; System.arraycopy(selectionArgs, 0, mSelectionArgs, 0, selectionArgs.length); } return this; } Loading