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) {
196196 @ ReactMethod
197197 public void multiSet (final ReadableArray keyValueArray , final Callback callback ) {
198198 if (keyValueArray .size () == 0 ) {
199- callback .invoke (AsyncStorageErrorUtil . getInvalidKeyError ( null ) );
199+ callback .invoke ();
200200 return ;
201201 }
202202
@@ -261,7 +261,7 @@ protected void doInBackgroundGuarded(Void... params) {
261261 @ ReactMethod
262262 public void multiRemove (final ReadableArray keys , final Callback callback ) {
263263 if (keys .size () == 0 ) {
264- callback .invoke (AsyncStorageErrorUtil . getInvalidKeyError ( null ) );
264+ callback .invoke ();
265265 return ;
266266 }
267267
You can’t perform that action at this time.
0 commit comments