* 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) {