From 62adb80d51f50ae2406bd73efbf0d8935d31345c Mon Sep 17 00:00:00 2001 From: dalbodeule <11470513+dalbodeule@users.noreply.github.com> Date: Mon, 10 Jun 2024 15:07:53 +0900 Subject: [PATCH] useless code fix --- src/main/kotlin/space/mori/dnsapi/PowerDNSAPIClient.kt | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/main/kotlin/space/mori/dnsapi/PowerDNSAPIClient.kt b/src/main/kotlin/space/mori/dnsapi/PowerDNSAPIClient.kt index d8e8365..acf5370 100644 --- a/src/main/kotlin/space/mori/dnsapi/PowerDNSAPIClient.kt +++ b/src/main/kotlin/space/mori/dnsapi/PowerDNSAPIClient.kt @@ -66,7 +66,6 @@ class PowerDNSAPIClient() { val response = client.newCall(request).execute() if(!response.isSuccessful) { val str = response.body?.string() - println(str) val error = gson.fromJson(str, PowerDNSAPIError::class.java) throw PowerDNSAPIException(error) } @@ -99,7 +98,6 @@ class PowerDNSAPIClient() { val response = client.newCall(request).execute() if(!response.isSuccessful) { val str = response.body?.string() - println(str) val error = gson.fromJson(str, PowerDNSAPIError::class.java) throw PowerDNSAPIException(error) } @@ -132,7 +130,6 @@ class PowerDNSAPIClient() { val response = client.newCall(request).execute() if(!response.isSuccessful) { val str = response.body?.string() - println(str) val error = gson.fromJson(str, PowerDNSAPIError::class.java) throw PowerDNSAPIException(error) } @@ -159,7 +156,6 @@ class PowerDNSAPIClient() { val response = client.newCall(request).execute() if(!response.isSuccessful) { val str = response.body?.string() - println(str) val error = gson.fromJson(str, PowerDNSAPIError::class.java) throw PowerDNSAPIException(error) }