libeufin

Integration and sandbox testing for FinTech APIs and data formats
Log | Files | Refs | Submodules | README | LICENSE

commit f6a3cedd9a0a1237331eb70a380557d4c1a57f6a
parent afb682e3e480cb23d58740f90baf4983261cfa6d
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date:   Fri, 24 Jan 2020 16:28:36 +0100

address warnings

Diffstat:
Mnexus/src/main/kotlin/Main.kt | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/nexus/src/main/kotlin/Main.kt b/nexus/src/main/kotlin/Main.kt @@ -301,9 +301,6 @@ fun main() { var recipientLine = "TODO" val customerIdLine = "TODO" - var dateLine = dateFormat.format(now) - var timeLine = timeFormat.format(now) - var userIdLine = "" var esExponentLine = "" var esModulusLine = "" @@ -322,6 +319,9 @@ fun main() { val now = Date() val dateFormat = SimpleDateFormat("DD.MM.YYYY") val timeFormat = SimpleDateFormat("HH.mm.ss") + var dateLine = dateFormat.format(now) + var timeLine = timeFormat.format(now) +