Skip to content
Snippets Groups Projects
Commit 04485730 authored by Jonas Blatt's avatar Jonas Blatt :ant:
Browse files

Fix Camunda date format, no optional start after minute

parent c5c89a42
No related branches found
No related tags found
No related merge requests found
...@@ -37,7 +37,6 @@ public class DateBoundary extends AbstractGrowingBoundary<LocalDateTime> { ...@@ -37,7 +37,6 @@ public class DateBoundary extends AbstractGrowingBoundary<LocalDateTime> {
.appendValue(HOUR_OF_DAY, 2) .appendValue(HOUR_OF_DAY, 2)
.appendLiteral(':') .appendLiteral(':')
.appendValue(MINUTE_OF_HOUR, 2) .appendValue(MINUTE_OF_HOUR, 2)
.optionalStart()
.appendLiteral(':') .appendLiteral(':')
.appendValue(SECOND_OF_MINUTE, 2) .appendValue(SECOND_OF_MINUTE, 2)
.appendLiteral("\")") .appendLiteral("\")")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment