Browse Source

Rename exception variable name

See gh-39518
pull/39591/head
dev-chpark 2 years ago committed by Moritz Halbritter
parent
commit
c1df48f969
  1. 2
      spring-boot-project/spring-boot/src/main/java/org/springframework/boot/ansi/AnsiPropertySource.java

2
spring-boot-project/spring-boot/src/main/java/org/springframework/boot/ansi/AnsiPropertySource.java

@ -150,7 +150,7 @@ public class AnsiPropertySource extends PropertySource<AnsiElement> { @@ -150,7 +150,7 @@ public class AnsiPropertySource extends PropertySource<AnsiElement> {
try {
return this.factory.apply(Integer.parseInt(postfix));
}
catch (IllegalArgumentException ex) {
catch (IllegalArgumentException ignored) {
}
}
return null;

Loading…
Cancel
Save