commit | 8a8054580686c6613de7c774c09d75013af963aa | [log] [tgz] |
---|---|---|
author | asobolev <asobolev> | Thu Aug 06 07:58:50 2009 +0000 |
committer | asobolev <asobolev> | Thu Aug 06 07:58:50 2009 +0000 |
tree | d9aff63af4270c66c07bc2c81c5904abc773d2de | |
parent | 3f82237ceb031e074ee52aa4d936986f2c9b98ba [diff] |
* little fix
diff --git a/rse/plugins/org.eclipse.dltk.ssh.core/src/org/eclipse/dltk/ssh/internal/core/SshFileHandle.java b/rse/plugins/org.eclipse.dltk.ssh.core/src/org/eclipse/dltk/ssh/internal/core/SshFileHandle.java index 71a25f0..193a942 100644 --- a/rse/plugins/org.eclipse.dltk.ssh.core/src/org/eclipse/dltk/ssh/internal/core/SshFileHandle.java +++ b/rse/plugins/org.eclipse.dltk.ssh.core/src/org/eclipse/dltk/ssh/internal/core/SshFileHandle.java
@@ -182,10 +182,10 @@ throws CoreException { fetchAttrs(); if (attrs != null) { - IPath current = this.path; - if (attrs.isLink() && linkTarget != null) { - current = linkTarget; - } + // IPath current = this.path; + // if (attrs.isLink() && linkTarget != null) { + // current = linkTarget; + // } final InputStream stream = connection.get(this.path); if (stream != null) { InputStream wrapperStream = new BufferedInputStream(stream) {