* delay resource information fetching
diff --git a/rse/plugins/org.eclipse.dltk.ssh.core/src/org/eclipse/dltk/ssh/internal/core/SshConnection.java b/rse/plugins/org.eclipse.dltk.ssh.core/src/org/eclipse/dltk/ssh/internal/core/SshConnection.java
index 9b84a08..3ca9947 100644
--- a/rse/plugins/org.eclipse.dltk.ssh.core/src/org/eclipse/dltk/ssh/internal/core/SshConnection.java
+++ b/rse/plugins/org.eclipse.dltk.ssh.core/src/org/eclipse/dltk/ssh/internal/core/SshConnection.java
@@ -408,11 +408,11 @@
if (isDisabled()) {
return null;
}
- GetStatOperation op = new GetStatOperation(path);
- performOperation(op, DEFAULT_RETRY_COUNT);
- if (op.isFinished()) {
- return new SshFileHandle(this, path, op.getAttrs());
- }
+ // GetStatOperation op = new GetStatOperation(path);
+ // performOperation(op, DEFAULT_RETRY_COUNT);
+ // if (op.isFinished()) {
+ // return new SshFileHandle(this, path, op.getAttrs());
+ // }
return new SshFileHandle(this, path, null);
}