Fixed variables setup

This commit is contained in:
dankito 2020-07-15 22:23:12 +02:00
parent 3b3ada38ca
commit 23469c74ce
1 changed files with 2 additions and 2 deletions

View File

@ -47,9 +47,9 @@ open class Mt940Parser : IMt940Parser {
const val ClosingBalanceCode = "62" const val ClosingBalanceCode = "62"
val DateFormat: DateFormat = DateFormat("yyMMdd") val DateFormatter = DateFormatter("yyMMdd")
val CurrentYearTwoDigit = DateTime.now().yearInt val CurrentYearTwoDigit = Date().year() - 2000
val CreditDebitCancellationRegex = Regex("C|D|RC|RD") val CreditDebitCancellationRegex = Regex("C|D|RC|RD")