We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57ef0c5 commit 91e0cb2Copy full SHA for 91e0cb2
plugin/src/main/groovy/org/clarify4j/config/handler/ExecutorSinceHandler.java
@@ -20,7 +20,7 @@ public class ExecutorSinceHandler {
20
public Object execute(ProceedingJoinPoint joinPoint) throws Throwable {
21
Date start = new Date();
22
Object proceed = joinPoint.proceed();
23
- String since = Time4j.sinceSmallRecently(start, new Date());
+ String since = Time4j.sinceSmallRecently(new Date(), start);
24
Signature signature = joinPoint.getSignature();
25
String clazz = joinPoint.getTarget().getClass().getSimpleName();
26
String method = signature.getName();
0 commit comments