jaroslav@1697: /* jaroslav@1697: * Copyright (C) 2014 API Design jaroslav@1697: * jaroslav@1697: * This program is free software; you can redistribute it and/or jaroslav@1697: * modify it under the terms of the GNU General Public License jaroslav@1697: * as published by the Free Software Foundation; either version 2 jaroslav@1697: * of the License, or (at your option) any later version. jaroslav@1697: * jaroslav@1697: * This program is distributed in the hope that it will be useful, jaroslav@1697: * but WITHOUT ANY WARRANTY; without even the implied warranty of jaroslav@1697: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the jaroslav@1697: * GNU General Public License for more details. jaroslav@1697: * jaroslav@1697: * You should have received a copy of the GNU General Public License jaroslav@1697: * along with this program; if not, write to the Free Software jaroslav@1697: * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. jaroslav@1697: */ jaroslav@1697: package java.util.stream; jaroslav@1697: jaroslav@1697: /** NetBeans uses the Streams class for check whether we are really running jaroslav@1697: * on JDK8 and thus can enable JDK8 features. Let's add one such fake class jaroslav@1697: * here. jaroslav@1697: * jaroslav@1697: * @author Jaroslav Tulach jaroslav@1697: */ jaroslav@1697: final class Streams { jaroslav@1697: private Streams() { jaroslav@1697: } jaroslav@1697: }