Mercurial > cgi-bin > hgweb.cgi > PassMan
comparison src/main/kotlin/name/blackcap/passman/Entry.kt @ 9:72619175004e
Fix issues found in testing.
author | David Barts <n5jrn@me.com> |
---|---|
date | Sat, 01 Oct 2022 09:57:23 -0700 |
parents | 698c4a3d758d |
children | c69665ff37d0 |
comparison
equal
deleted
inserted
replaced
8:698c4a3d758d | 9:72619175004e |
---|---|
56 println("Password: $redactPassword") | 56 println("Password: $redactPassword") |
57 } | 57 } |
58 } | 58 } |
59 | 59 |
60 fun printLong(redactPassword: String? = null) { | 60 fun printLong(redactPassword: String? = null) { |
61 print(redactPassword) | 61 this.print(redactPassword) |
62 println("Notes: ${notes ?: "(none)"}") | 62 println("Notes: ${notes ?: "(none)"}") |
63 printDate("Created", created) | 63 printDate("Created", created) |
64 printDate("Modified", modified) | 64 printDate("Modified", modified) |
65 printDate("Accessed", accessed) | 65 printDate("Accessed", accessed) |
66 } | 66 } |