Mercurial > hg4j
diff src/org/tmatesoft/hg/repo/HgLookup.java @ 526:2f9ed6bcefa2
Initial support for Revert command with accompanying minor refactoring
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Tue, 15 Jan 2013 17:07:19 +0100 |
parents | 0bd2d0441d8f |
children | f97e81d13190 |
line wrap: on
line diff
--- a/src/org/tmatesoft/hg/repo/HgLookup.java Fri Jan 11 18:12:39 2013 +0100 +++ b/src/org/tmatesoft/hg/repo/HgLookup.java Tue Jan 15 17:07:19 2013 +0100 @@ -28,6 +28,7 @@ import org.tmatesoft.hg.internal.BasicSessionContext; import org.tmatesoft.hg.internal.ConfigFile; import org.tmatesoft.hg.internal.DataAccessProvider; +import org.tmatesoft.hg.internal.Internals; import org.tmatesoft.hg.repo.HgRepoConfig.PathsSection; /** @@ -129,7 +130,7 @@ throw new IllegalArgumentException(); } if (Boolean.FALSE.booleanValue()) { - throw HgRepository.notImplemented(); + throw Internals.notImplemented(); } return new HgRemoteRepository(getContext(), url); }