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