diff options
author | Aylur <[email protected]> | 2024-11-05 21:38:55 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2024-11-05 21:38:55 +0100 |
commit | 684dd1c7313c40777bc3c63391d7e27659793af6 (patch) | |
tree | a58d69dfbf8d523cf3e3a23e26de593d9dc4db5c | |
parent | ca6a37c98a784bcb652ebe3737c906274c0ff1ab (diff) |
Update client.vala
remove leftover print statement
-rw-r--r-- | lib/greet/client.vala | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/greet/client.vala b/lib/greet/client.vala index ee220b5..fac5898 100644 --- a/lib/greet/client.vala +++ b/lib/greet/client.vala @@ -104,8 +104,6 @@ public abstract class Request : Object { var obj = parser.get_root().get_object(); var type = obj.get_string_member("type"); - print(@"$type: $response\n"); - switch (type) { case Success.TYPE: return new Success(obj); case Error.TYPE: return new Error(obj); |