src/java.base/share/classes/java/util/TreeSet.java
changeset 49433 b6671a111395
parent 47216 71c04702a3d5
child 57895 82a71d82e326
child 58678 9cf78a70fa4f
equal deleted inserted replaced
49432:f76e1ac74f28 49433:b6671a111395
     1 /*
     1 /*
     2  * Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1998, 2018, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    72  * Therefore, it would be wrong to write a program that depended on this
    72  * Therefore, it would be wrong to write a program that depended on this
    73  * exception for its correctness:   <i>the fail-fast behavior of iterators
    73  * exception for its correctness:   <i>the fail-fast behavior of iterators
    74  * should be used only to detect bugs.</i>
    74  * should be used only to detect bugs.</i>
    75  *
    75  *
    76  * <p>This class is a member of the
    76  * <p>This class is a member of the
    77  * <a href="{@docRoot}/java/util/package-summary.html#CollectionsFramework">
    77  * <a href="{@docRoot}/java.base/java/util/package-summary.html#CollectionsFramework">
    78  * Java Collections Framework</a>.
    78  * Java Collections Framework</a>.
    79  *
    79  *
    80  * @param <E> the type of elements maintained by this set
    80  * @param <E> the type of elements maintained by this set
    81  *
    81  *
    82  * @author  Josh Bloch
    82  * @author  Josh Bloch