rt/emul/compact/src/main/java/java/util/stream/Streams.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sun, 14 Sep 2014 22:34:52 +0200
changeset 1697 461cd4b24db9
permissions -rw-r--r--
NetBeans uses the Streams class for check whether we are really running on JDK8 and thus whether it can enable JDK8 features. Add such fake package private class.
jaroslav@1697
     1
/*
jaroslav@1697
     2
 * Copyright (C) 2014 API Design
jaroslav@1697
     3
 *
jaroslav@1697
     4
 * This program is free software; you can redistribute it and/or
jaroslav@1697
     5
 * modify it under the terms of the GNU General Public License
jaroslav@1697
     6
 * as published by the Free Software Foundation; either version 2
jaroslav@1697
     7
 * of the License, or (at your option) any later version.
jaroslav@1697
     8
 *
jaroslav@1697
     9
 * This program is distributed in the hope that it will be useful,
jaroslav@1697
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
jaroslav@1697
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
jaroslav@1697
    12
 * GNU General Public License for more details.
jaroslav@1697
    13
 *
jaroslav@1697
    14
 * You should have received a copy of the GNU General Public License
jaroslav@1697
    15
 * along with this program; if not, write to the Free Software
jaroslav@1697
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
jaroslav@1697
    17
 */
jaroslav@1697
    18
package java.util.stream;
jaroslav@1697
    19
jaroslav@1697
    20
/** NetBeans uses the Streams class for check whether we are really running
jaroslav@1697
    21
 * on JDK8 and thus can enable JDK8 features. Let's add one such fake class
jaroslav@1697
    22
 * here.
jaroslav@1697
    23
 *
jaroslav@1697
    24
 * @author Jaroslav Tulach
jaroslav@1697
    25
 */
jaroslav@1697
    26
final class Streams {
jaroslav@1697
    27
    private Streams() {
jaroslav@1697
    28
    }
jaroslav@1697
    29
}