From ae6b64c9635ea8c7bb931f2b5ce4c4cc580d501d Mon Sep 17 00:00:00 2001 From: David McKnight Date: Wed, 28 Feb 2007 21:15:18 +0000 Subject: [PATCH] [175908] removed some debug lines --- .../rse/services/dstore/files/DStoreInputStream.java | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/rse/plugins/org.eclipse.rse.services.dstore/src/org/eclipse/rse/services/dstore/files/DStoreInputStream.java b/rse/plugins/org.eclipse.rse.services.dstore/src/org/eclipse/rse/services/dstore/files/DStoreInputStream.java index 43e2c9a0a5e..cbb2f75ebaa 100644 --- a/rse/plugins/org.eclipse.rse.services.dstore/src/org/eclipse/rse/services/dstore/files/DStoreInputStream.java +++ b/rse/plugins/org.eclipse.rse.services.dstore/src/org/eclipse/rse/services/dstore/files/DStoreInputStream.java @@ -120,10 +120,6 @@ public class DStoreInputStream extends InputStream if (_localFileInputStream != null) { int result = _localFileInputStream.read(); - if (result == -1) - { - System.out.println("result is -1"); - } return result; } return 0; @@ -134,10 +130,6 @@ public class DStoreInputStream extends InputStream if (_localFileInputStream != null) { int result = _localFileInputStream.read(b, off, len); - if (result == -1) - { - System.out.println("result is -1"); - } return result; } return 0; @@ -148,10 +140,6 @@ public class DStoreInputStream extends InputStream if (_localFileInputStream != null) { int result = _localFileInputStream.read(b); - if (result == -1) - { - System.out.println("result is -1"); - } return result; } return 0;