From fbbf1a9024fa7d94e4b679ac1397b44fffc81bdf Mon Sep 17 00:00:00 2001 From: "leedongmyung[desktop]" Date: Sat, 25 Nov 2023 19:59:40 +0900 Subject: [PATCH] code refactoring --- lib/oto/commands/command.dart | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/oto/commands/command.dart b/lib/oto/commands/command.dart index 816b339..6a14ef9 100644 --- a/lib/oto/commands/command.dart +++ b/lib/oto/commands/command.dart @@ -95,8 +95,7 @@ abstract class Command { if (tag.startsWith('property')) { var key = tag.replaceFirst('property.', ''); Application.instance.property[key] = value; - await CLI.println('[Set Return] $key : $value', - color: Color.yellowStrong); + await CLI.println('[Return] $key : $value', color: Color.yellowStrong); } return simpleFuture; }