Skip to content

Commit

Permalink
clean-up
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean Foley committed Mar 3, 2024
1 parent 808fc2f commit 27e2831
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public AssociativeTrieNode<K,V> getParent() {
return (AssociativeTrieNode<K,V>) super.getParent();
}

@SuppressWarnings("unchecked")
@SuppressWarnings("unchecked")
@Override
public V get(K addr) {
AssociativeTrieNode<K,V> node = (AssociativeTrieNode<K,V>) doLookup(addr).existingNode;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3030,7 +3030,7 @@ private static long parseLong2(CharSequence s, int start, int end) {
}
return result;
}

private static int parseInt8(CharSequence s, int start, int end) throws AddressStringException {
int charArray[] = chars;
int result = charArray[s.charAt(start)];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3804,7 +3804,7 @@ static class IPv6AddressSectionStringCollection extends IPAddressPartStringSubCo
super(addr);
this.zone = zone;
}

@Override
public Iterator<IPv6AddressSectionString> iterator() {
return new IPAddressConfigurableStringIterator() {
Expand Down

0 comments on commit 27e2831

Please sign in to comment.