diff src/main/kotlin/name/blackcap/passman/See.kt @ 9:72619175004e

Fix issues found in testing.
author David Barts <n5jrn@me.com>
date Sat, 01 Oct 2022 09:57:23 -0700
parents ad997df1f560
children
line wrap: on
line diff
--- a/src/main/kotlin/name/blackcap/passman/See.kt	Fri Sep 23 20:59:52 2022 -0700
+++ b/src/main/kotlin/name/blackcap/passman/See.kt	Sat Oct 01 09:57:23 2022 -0700
@@ -9,7 +9,7 @@
     Character.SURROGATE, Character.PRIVATE_USE, Character.UNASSIGNED,
     Character.SPACE_SEPARATOR)
 private val STD_ESC_MAP = mapOf<Char, Char>('\t' to 't', '\b' to 'b', '\n' to 'n',
-    '\r' to 'r', '\u000c' to 'f', '"' to '"', '\\' to '\\')
+    '\r' to 'r', '"' to '"', '\\' to '\\')
 
 fun see(input: String): String {
     val accum = Formatter()