Skip to content

Commit 91e0cb2

Browse files
committed
♻️ refactor: refactor codebase #2
1 parent 57ef0c5 commit 91e0cb2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugin/src/main/groovy/org/clarify4j/config/handler/ExecutorSinceHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public class ExecutorSinceHandler {
2020
public Object execute(ProceedingJoinPoint joinPoint) throws Throwable {
2121
Date start = new Date();
2222
Object proceed = joinPoint.proceed();
23-
String since = Time4j.sinceSmallRecently(start, new Date());
23+
String since = Time4j.sinceSmallRecently(new Date(), start);
2424
Signature signature = joinPoint.getSignature();
2525
String clazz = joinPoint.getTarget().getClass().getSimpleName();
2626
String method = signature.getName();

0 commit comments

Comments
 (0)