1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-06-23 03:54:54 +02:00

Fix IPAddressUtil.isIPv4LiteralAddress(String)

Fixes SMACK-791
This commit is contained in:
Florian Schmaus 2017-12-16 12:36:02 +01:00
parent 63dd9953fc
commit 5147f6e915

View file

@ -29,7 +29,7 @@ public class IpAddressUtil {
return false;
}
for (int i = 0; i < 3; i++) {
for (int i = 1; i <= 4; i++) {
String ipSegment = matcher.group(i);
int ipSegmentInt;
try {