From cccbd7557e9c5861ba4492521367a0aacb66ca7f Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Sat, 18 Jan 2020 13:28:56 +0100 Subject: [PATCH] Clean up --- lib/components/matrix.dart | 2 +- lib/utils/string_color.dart | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/components/matrix.dart b/lib/components/matrix.dart index af8200a..126346b 100644 --- a/lib/components/matrix.dart +++ b/lib/components/matrix.dart @@ -356,7 +356,7 @@ class MatrixState extends State { @override void initState() { if (widget.client == null) { - client = Client(widget.clientName, debug: true); + client = Client(widget.clientName, debug: false); if (!kIsWeb) { _initWithStore(); } else { diff --git a/lib/utils/string_color.dart b/lib/utils/string_color.dart index 2afccc6..7579809 100644 --- a/lib/utils/string_color.dart +++ b/lib/utils/string_color.dart @@ -7,7 +7,6 @@ extension StringColor on String { number += this.codeUnitAt(i); } number = (number % 10) * 25.5; - print(number); return HSLColor.fromAHSL(1, number, 1, 0.35).toColor(); } }