Skip to content

Commit

Permalink
Mark method only used by NetworkInterface as deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
shs96c committed Feb 22, 2018
1 parent 2e49202 commit 08262ae
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions java/client/src/org/openqa/selenium/net/NetworkInterface.java
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,10 @@ private boolean isLoopBackFromINetAddresses(Iterable<InetAddress> inetAddresses)
return iterator.hasNext() && iterator.next().isLoopbackAddress();
}

/**
* @deprecated Will have reduced visibility in later releases.
*/
@Deprecated
public InetAddress getIp4LoopbackOnly() {
// Goes by the wildly unscientific assumption that if there are more than one set of
// loopback addresses, firefox will bind to the last one we get.
Expand Down

0 comments on commit 08262ae

Please sign in to comment.