jdk/src/java.base/unix/classes/sun/net/NetHooks.java
changeset 32649 2ee9017c7597
parent 25859 3317bb8137f4
child 37781 71ed5645f17c
equal deleted inserted replaced
32648:1fa861caf840 32649:2ee9017c7597
    43      * connecting a TCP socket.
    43      * connecting a TCP socket.
    44      *
    44      *
    45      * <p> Concrete implementations of this class should define a zero-argument
    45      * <p> Concrete implementations of this class should define a zero-argument
    46      * constructor and implement the abstract methods specified below.
    46      * constructor and implement the abstract methods specified below.
    47      */
    47      */
    48     public static abstract class Provider {
    48     public abstract static class Provider {
    49         /**
    49         /**
    50          * Initializes a new instance of this class.
    50          * Initializes a new instance of this class.
    51          */
    51          */
    52         protected Provider() {}
    52         protected Provider() {}
    53 
    53