From 05e42502539f6eca3969d9ed16dae18b87055035 Mon Sep 17 00:00:00 2001 From: Mark Harrah Date: Sat, 13 Mar 2010 19:31:27 -0500 Subject: [PATCH] Add *** to Path for all descendents --- src/main/scala/sbt/Path.scala | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/scala/sbt/Path.scala b/src/main/scala/sbt/Path.scala index 4e6c68aba..1a6db396d 100644 --- a/src/main/scala/sbt/Path.scala +++ b/src/main/scala/sbt/Path.scala @@ -241,6 +241,7 @@ sealed abstract class PathFinder extends NotNull /** Constructs a new finder that selects all paths with a name that matches filter and are * descendents of paths selected by this finder.*/ def **(filter: FileFilter): PathFinder = new DescendentOrSelfPathFinder(this, filter) + def *** : PathFinder = **(AllPassFilter) /** Constructs a new finder that selects all paths with a name that matches filter and are * immediate children of paths selected by this finder.*/ def *(filter: FileFilter): PathFinder = new ChildPathFinder(this, filter)