1 Commits
0.3.1 ... 0.3.2

Author SHA1 Message Date
dalbodeule
83791fe59b remove useless prints. 2024-07-15 10:16:12 +09:00
2 changed files with 0 additions and 3 deletions

View File

@@ -118,7 +118,6 @@ fun getFollowDate(chatID: String, userId: String) : IData<IFollowContent> {
try {
if(!response.isSuccessful) throw IOException("Unexpected code ${response.code}")
val body = response.body?.string()
println(body)
val follow = gson.fromJson(body, object: TypeToken<IData<IFollowContent>>() {})
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)
}.singleOrNull()
println("$counter")
if(counter == null) {
val newCounter = DailyCounter.new {
this.name = name