File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
android/src/main/java/com/reactnativecommunity/asyncstorage Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -196,7 +196,7 @@ protected void doInBackgroundGuarded(Void... params) {
196
196
@ ReactMethod
197
197
public void multiSet (final ReadableArray keyValueArray , final Callback callback ) {
198
198
if (keyValueArray .size () == 0 ) {
199
- callback .invoke (AsyncStorageErrorUtil . getInvalidKeyError ( null ) );
199
+ callback .invoke ();
200
200
return ;
201
201
}
202
202
@@ -261,7 +261,7 @@ protected void doInBackgroundGuarded(Void... params) {
261
261
@ ReactMethod
262
262
public void multiRemove (final ReadableArray keys , final Callback callback ) {
263
263
if (keys .size () == 0 ) {
264
- callback .invoke (AsyncStorageErrorUtil . getInvalidKeyError ( null ) );
264
+ callback .invoke ();
265
265
return ;
266
266
}
267
267
You can’t perform that action at this time.
0 commit comments