Skip to content

Commit c619898

Browse files
committed
fix quality violations
1 parent 48f72cd commit c619898

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/main/java/com/jcabi/aspects/aj/MethodLogger.java

+4-2
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ private Object wrap(
200200
logMethodExit(point, method, annotation, result, start);
201201
return result;
202202
} catch (final Throwable exc) {
203-
this.handleException(exc, point, method, annotation, start);
203+
handleException(exc, point, method, annotation, start);
204204
throw exc;
205205
} finally {
206206
this.running.remove(marker);
@@ -240,6 +240,7 @@ private static void logMethodEntry(
240240
}
241241
}
242242

243+
// @checkstyle ParameterNumberCheck (7 lines)
243244
private static void logMethodExit(
244245
final ProceedingJoinPoint point,
245246
final Method method,
@@ -261,7 +262,8 @@ private static void logMethodExit(
261262
}
262263
}
263264

264-
private void handleException(
265+
// @checkstyle ParameterNumberCheck (7 lines)
266+
private static void handleException(
265267
final Throwable exc,
266268
final ProceedingJoinPoint point,
267269
final Method method,

0 commit comments

Comments
 (0)