in src/main/java/com/pastdev/jsch/nio/file/UnixSshPath.java [102:111]
public boolean equals( Object other ) {
if ( !(other instanceof UnixSshPath) ) {
return false;
}
UnixSshPath otherPath = (UnixSshPath) other;
if ( !otherPath.getFileSystem().equals( getFileSystem() ) ) {
return false;
}
return toString().equals( otherPath.toString() );
}