From 4e17c5636ca067ad4f4aaa75a81a479ab3b2e5c1 Mon Sep 17 00:00:00 2001 From: r-ca Date: Mon, 29 Jan 2024 01:39:06 +0900 Subject: [PATCH] =?UTF-8?q?=E3=83=87=E3=83=90=E3=83=83=E3=82=B0=E3=83=AD?= =?UTF-8?q?=E3=82=B0=E5=89=8A=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../nem/lacerta/component/common/LacertaApplyTagDialog.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/component/common/src/main/java/one/nem/lacerta/component/common/LacertaApplyTagDialog.java b/component/common/src/main/java/one/nem/lacerta/component/common/LacertaApplyTagDialog.java index c5acb14b..5233528c 100644 --- a/component/common/src/main/java/one/nem/lacerta/component/common/LacertaApplyTagDialog.java +++ b/component/common/src/main/java/one/nem/lacerta/component/common/LacertaApplyTagDialog.java @@ -133,10 +133,6 @@ public class LacertaApplyTagDialog extends DialogFragment { } private void applyChangeToVariable(boolean isChecked, String tagId) { - logger.debug("applyChangeToVariable", "isChecked: " + isChecked); - logger.debug("applyChangeToVariable", "tagId: " + tagId); - logger.debug("applyChangeToVariable", "this.registeredTags.size(): " + this.registeredTags.size()); - logger.debug("applyChangeToVariable", "this.appliedTags.size(): " + this.appliedTags.size()); if (isChecked) { this.registeredTags.stream().filter(tag -> tag.getId().equals(tagId)).findFirst().ifPresent(tag -> this.appliedTags.add(tag)); } else {