fixed string literal duplication

This commit is contained in:
X1nto 2020-07-11 18:07:23 +04:00
parent ec78585144
commit 89d8be8cdc
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ object InternetTools {
override fun onResponse(call: Call, response: Response) {
toReturn.set(JSONObject(response.body?.string()!!).getInt(obj))
Log.d("VMResponse", toReturn.get().toString())
Log.d("VMResponse", toReturn.toString())
}
})