From e696d3cd3d4024273b1d8821fe51a9253700f752 Mon Sep 17 00:00:00 2001 From: Marco Date: Tue, 13 Dec 2022 03:38:31 +0100 Subject: [PATCH] Rename variables for clarity. --- lib/chessapp/chess_utils.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/chessapp/chess_utils.dart b/lib/chessapp/chess_utils.dart index 3e24caf..58aa0ae 100644 --- a/lib/chessapp/chess_utils.dart +++ b/lib/chessapp/chess_utils.dart @@ -62,10 +62,10 @@ class ChessCoordinate { @override String toString() { - String row = this.row.toString(); - String col = this.column.toString(); + String rowStr = row.toString(); + String colStr = column.toString(); - return '$col$row'; + return '$colStr$rowStr'; } @override