Mercurial > hg4j
comparison src/org/tmatesoft/hg/repo/HgIgnore.java @ 419:7f136a3fa671
Clean javadoc to fix obvious warnings
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Thu, 22 Mar 2012 21:36:41 +0100 |
parents | 0f5696623512 |
children | e6407313bab7 |
comparison
equal
deleted
inserted
replaced
418:528b6780a8bd | 419:7f136a3fa671 |
---|---|
211 } | 211 } |
212 return false; | 212 return false; |
213 } | 213 } |
214 | 214 |
215 /** | 215 /** |
216 * A handy wrap of {@link #isIgnored(Path)} into {@link Path.Matcher}. Yields same result as {@link #isIgnored(Path)}. | 216 * A handy wrap of {@link #isIgnored(Path)} into {@link org.tmatesoft.hg.util.Path.Matcher}. Yields same result as {@link #isIgnored(Path)}. |
217 * @return <code>true</code> if file is deemed ignored. | 217 * @return <code>true</code> if file is deemed ignored. |
218 */ | 218 */ |
219 public boolean accept(Path path) { | 219 public boolean accept(Path path) { |
220 return isIgnored(path); | 220 return isIgnored(path); |
221 } | 221 } |