Mercurial > hg4j
diff src/org/tmatesoft/hg/repo/Internals.java @ 91:c2ce1cfaeb9e
ignore file with regex and 'honest' glob support
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Thu, 27 Jan 2011 06:06:42 +0100 |
parents | 6f1b88693d48 |
children |
line wrap: on
line diff
--- a/src/org/tmatesoft/hg/repo/Internals.java Wed Jan 26 06:31:40 2011 +0100 +++ b/src/org/tmatesoft/hg/repo/Internals.java Thu Jan 27 06:06:42 2011 +0100 @@ -39,7 +39,7 @@ } public boolean[] checkIgnored(String... toCheck) { - HgIgnore ignore = repo.loadIgnore(); + HgIgnore ignore = repo.getIgnore(); boolean[] rv = new boolean[toCheck.length]; for (int i = 0; i < toCheck.length; i++) { rv[i] = ignore.isIgnored(toCheck[i]);