Skip to content

Commit

Permalink
Merge pull request #15 from skyflowapi/FIX/code_cleanup
Browse files Browse the repository at this point in the history
Remove debugger log
  • Loading branch information
saketh-skyflow authored Sep 2, 2021
2 parents 1749b2d + 9340201 commit 0b415f4
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions Skyflow/src/main/kotlin/Skyflow/reveal/RevealResponse.kt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package Skyflow.reveal

import Skyflow.Callback
import android.util.Log
import org.json.JSONArray
import org.json.JSONObject

Expand All @@ -18,7 +17,6 @@ class RevealResponse(var size: Int, var callback: Callback){
@Synchronized fun insertResponse(responseObject :JSONObject? = null, isSuccess:Boolean = false){
if(responseObject != null && isSuccess) {
successResponses +=1
Log.d("records", "insertResponse: $responseObject")
(responseBody.get("records") as JSONArray)
.put(responseObject.getJSONArray("records")[0])
}
Expand Down

0 comments on commit 0b415f4

Please sign in to comment.