added missing {

This commit is contained in:
Simon Willnauer 2015-04-29 10:53:33 +02:00
parent b4efb6c472
commit 32759398a5
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ public class IpFieldMapper extends NumberFieldMapper<Long> {
} }
return (Long.parseLong(octets[0]) << 24) + (Integer.parseInt(octets[1]) << 16) + return (Long.parseLong(octets[0]) << 24) + (Integer.parseInt(octets[1]) << 16) +
(Integer.parseInt(octets[2]) << 8) + Integer.parseInt(octets[3]); (Integer.parseInt(octets[2]) << 8) + Integer.parseInt(octets[3]);
} catch (Exception e) } catch (Exception e) {
if (e instanceof IllegalArgumentException) { if (e instanceof IllegalArgumentException) {
throw (IllegalArgumentException) e; throw (IllegalArgumentException) e;
} }