Example #1
0
 /// <exception cref="NGit.Errors.MissingObjectException"></exception>
 /// <exception cref="NGit.Errors.IncorrectObjectTypeException"></exception>
 /// <exception cref="System.IO.IOException"></exception>
 public override bool Include(TreeWalk walker)
 {
     if (walker.IsSubtree)
     {
         return(true);
     }
     else
     {
         return(walker.IsPathSuffix(pathRaw, pathRaw.Length));
     }
 }
		/// <exception cref="NGit.Errors.MissingObjectException"></exception>
		/// <exception cref="NGit.Errors.IncorrectObjectTypeException"></exception>
		/// <exception cref="System.IO.IOException"></exception>
		public override bool Include(TreeWalk walker)
		{
			if (walker.IsSubtree)
			{
				return true;
			}
			else
			{
				return walker.IsPathSuffix(pathRaw, pathRaw.Length);
			}
		}