src/java.base/share/classes/java/util/Arrays.java
changeset 49433 b6671a111395
parent 48356 29e165bdf669
child 49955 ea246151be08
equal deleted inserted replaced
49432:f76e1ac74f28 49433:b6671a111395
     1 /*
     1 /*
     2  * Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1997, 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
    61  * algorithms, so long as the specification itself is adhered to. (For
    61  * algorithms, so long as the specification itself is adhered to. (For
    62  * example, the algorithm used by {@code sort(Object[])} does not have to be
    62  * example, the algorithm used by {@code sort(Object[])} does not have to be
    63  * a MergeSort, but it does have to be <i>stable</i>.)
    63  * a MergeSort, but it does have to be <i>stable</i>.)
    64  *
    64  *
    65  * <p>This class is a member of the
    65  * <p>This class is a member of the
    66  * <a href="{@docRoot}/java/util/package-summary.html#CollectionsFramework">
    66  * <a href="{@docRoot}/java.base/java/util/package-summary.html#CollectionsFramework">
    67  * Java Collections Framework</a>.
    67  * Java Collections Framework</a>.
    68  *
    68  *
    69  * @author Josh Bloch
    69  * @author Josh Bloch
    70  * @author Neal Gafter
    70  * @author Neal Gafter
    71  * @author John Rose
    71  * @author John Rose