Skip to content

Commit

Permalink
Merge branch 'master' into feature/MLIBZ-3120-kotlin-data-requests
Browse files Browse the repository at this point in the history
  • Loading branch information
b-stolyarov committed Sep 5, 2019
2 parents 60a8c39 + f645de4 commit 2e8c49f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Expand Up @@ -31,7 +31,8 @@ import java.io.IOException
/**
* Created by Prots on 2/8/16.
*/
abstract class AbstractDeleteRequest<T : GenericJson>(protected val cache: ICache<T>?, private val writePolicy: WritePolicy, protected var networkManager: NetworkManager<T>?,
abstract class AbstractDeleteRequest<T : GenericJson>(protected val cache: ICache<T>?, private val writePolicy: WritePolicy,
protected var networkManager: NetworkManager<T>?,
protected var syncManager: SyncManager?) : IRequest<Int> {

@Throws(IOException::class)
Expand Down
Expand Up @@ -27,7 +27,6 @@ import com.kinvey.java.store.requests.data.IRequest
import com.kinvey.java.store.requests.data.PushRequest
import com.kinvey.java.sync.SyncManager
import com.kinvey.java.sync.dto.SyncRequest
import org.checkerframework.checker.units.qual.A

import java.io.IOException
import java.security.AccessControlException
Expand Down Expand Up @@ -102,7 +101,6 @@ class SaveListRequest<T : GenericJson>(private val cache: ICache<T>?, private va
} catch (e: Exception) {
throw e
}

}
for (task in tasks) {
try {
Expand Down

0 comments on commit 2e8c49f

Please sign in to comment.