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 437e35d commit a334ee3Copy full SHA for a334ee3
web/src/main/java/org/springframework/security/web/util/matcher/IpAddressMatcher.java
@@ -133,8 +133,8 @@ private InetAddress parseAddress(String address) {
133
@Override
134
public String toString() {
135
String hostAddress = this.requiredAddress.getHostAddress();
136
- return (this.nMaskBits < 0) ? "IpAddressMatcher[" + hostAddress + "]"
137
- : "IpAddressMatcher[" + hostAddress + "/" + this.nMaskBits + "]";
+ return (this.nMaskBits < 0) ? "IpAddress [" + hostAddress + "]"
+ : "IpAddress [" + hostAddress + "/" + this.nMaskBits + "]";
138
}
139
140
0 commit comments