From bc46c500ac1d102516081b92f000bf8a0c4a0207 Mon Sep 17 00:00:00 2001 From: Herbert Poul Date: Sat, 31 Jul 2021 11:31:38 +0200 Subject: [PATCH] fix missing curly brace. --- lib/src/kdbx_format.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/kdbx_format.dart b/lib/src/kdbx_format.dart index 3dd4be4..773bffd 100644 --- a/lib/src/kdbx_format.dart +++ b/lib/src/kdbx_format.dart @@ -512,7 +512,7 @@ class MergeContext implements OverwriteContext { @override String toString() { - return '$runtimeType{${debugSummary()}'; + return '$runtimeType{${debugSummary()}}'; } }