Skip to content

Commit d85bdfb

Browse files
committed
Fix checkstyle violation
1 parent 68acc41 commit d85bdfb

File tree

1 file changed

+2
-1
lines changed
  • spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/metrics/web/servlet

1 file changed

+2
-1
lines changed

spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/metrics/web/servlet/WebMvcMetricsFilter.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,8 @@ private void record(TimingContext timingContext, HttpServletRequest request, Htt
144144
Builder builder = this.autoTimer.builder(this.metricName);
145145
timerSample.stop(getTimer(builder, handler, request, response, exception));
146146
}
147-
} else {
147+
}
148+
else {
148149
for (Timed annotation : annotations) {
149150
Builder builder = Timer.builder(annotation, this.metricName);
150151
timerSample.stop(getTimer(builder, handler, request, response, exception));

0 commit comments

Comments
 (0)