Merge "Reduce visibility of DirCacheCheckout.checkValidPath()"

This commit is contained in:
Shawn Pearce 2015-04-08 15:21:15 -04:00 committed by Gerrit Code Review @ Eclipse.org
commit 429e96eab6
1 changed files with 1 additions and 3 deletions

View File

@ -1284,10 +1284,8 @@ private static void checkValidPath(CanonicalTreeParser t)
* @throws InvalidPathException
* if the path is invalid
* @since 3.3
* @deprecated Use {@link SystemReader#checkPath(String)}.
*/
@Deprecated
public static void checkValidPath(String path) throws InvalidPathException {
static void checkValidPath(String path) throws InvalidPathException {
try {
SystemReader.getInstance().checkPath(path);
} catch (CorruptObjectException e) {