Skip to content

Commit 9996533

Browse files
authored
currentTimeInMillis() -> currentTimeMillis()
1 parent 4974f2b commit 9996533

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/asciidoc/routing.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -801,9 +801,9 @@ At this point it is too late to modify the exchange further. They are attached t
801801
----
802802
{
803803
decorator {
804-
val start = System.currentTimeInMillis()
804+
val start = System.currentTimeMillis()
805805
ctx.onComplete { <1>
806-
val end = System.currentTimeInMillis() <2>
806+
val end = System.currentTimeMillis() <2>
807807
println("Took: " + (end - start))
808808
}
809809
}

0 commit comments

Comments
 (0)