package effectivejava.creatinganddestoyingobjects;

/**
* Non instantiable utility Class
*
*
*/
public class Item3 {

    // Suppress default constructor for noninstantiability
    private Item3() {
        // This constructor will never be invoked
    }

}

Hosted by www.Geocities.ws

1