make path util classes public

This commit is contained in:
Shikhar Bhushan
2010-03-25 23:30:46 +01:00
parent 63b321e8d1
commit 09b93ec11a
2 changed files with 2 additions and 2 deletions

View File

@@ -15,7 +15,7 @@
*/
package net.schmizz.sshj.sftp;
class PathComponents {
public class PathComponents {
public static String adjustForParent(String parent, String path) {
return (path.startsWith("/")) ? path // Absolute path, nothing to adjust

View File

@@ -17,7 +17,7 @@ package net.schmizz.sshj.sftp;
import java.io.IOException;
class PathHelper {
public class PathHelper {
private final SFTPEngine sftp;
private String dotDir;