remove useless prints.

This commit is contained in:
dalbodeule 2024-07-15 10:16:12 +09:00
parent fe63a4af15
commit 7ffac1588c
No known key found for this signature in database
GPG Key ID: EFA860D069C9FA65
2 changed files with 0 additions and 3 deletions

View File

@ -118,7 +118,6 @@ fun getFollowDate(chatID: String, userId: String) : IData<IFollowContent> {
try { try {
if(!response.isSuccessful) throw IOException("Unexpected code ${response.code}") if(!response.isSuccessful) throw IOException("Unexpected code ${response.code}")
val body = response.body?.string() val body = response.body?.string()
println(body)
val follow = gson.fromJson(body, object: TypeToken<IData<IFollowContent>>() {}) val follow = gson.fromJson(body, object: TypeToken<IData<IFollowContent>>() {})
return follow return follow

View File

@ -81,8 +81,6 @@ object CounterService {
(DailyCounters.name eq name) and (DailyCounters.userId eq userId) and (DailyCounters.user eq user.id) (DailyCounters.name eq name) and (DailyCounters.userId eq userId) and (DailyCounters.user eq user.id)
}.singleOrNull() }.singleOrNull()
println("$counter")
if(counter == null) { if(counter == null) {
val newCounter = DailyCounter.new { val newCounter = DailyCounter.new {
this.name = name this.name = name