1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-04 15:45:25 +02:00

[175908] removed some debug lines

This commit is contained in:
David McKnight 2007-02-28 21:15:18 +00:00
parent 95f088ea7b
commit ae6b64c963

View file

@ -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;