Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jetty-start/src/main/java/org/eclipse/jetty/start/graph/AllPredicate.java')
-rw-r--r--jetty-start/src/main/java/org/eclipse/jetty/start/graph/AllPredicate.java31
1 files changed, 0 insertions, 31 deletions
diff --git a/jetty-start/src/main/java/org/eclipse/jetty/start/graph/AllPredicate.java b/jetty-start/src/main/java/org/eclipse/jetty/start/graph/AllPredicate.java
deleted file mode 100644
index 85ea61cb60..0000000000
--- a/jetty-start/src/main/java/org/eclipse/jetty/start/graph/AllPredicate.java
+++ /dev/null
@@ -1,31 +0,0 @@
-//
-// ========================================================================
-// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd.
-// ------------------------------------------------------------------------
-// All rights reserved. This program and the accompanying materials
-// are made available under the terms of the Eclipse Public License v1.0
-// and Apache License v2.0 which accompanies this distribution.
-//
-// The Eclipse Public License is available at
-// http://www.eclipse.org/legal/epl-v10.html
-//
-// The Apache License v2.0 is available at
-// http://www.opensource.org/licenses/apache2.0.php
-//
-// You may elect to redistribute this code under either of these licenses.
-// ========================================================================
-//
-
-package org.eclipse.jetty.start.graph;
-
-/**
- * Match on everything.
- */
-public class AllPredicate implements Predicate
-{
- @Override
- public boolean match(Node<?> node)
- {
- return true;
- }
-} \ No newline at end of file

Back to the top