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:
parent
95f088ea7b
commit
ae6b64c963
1 changed files with 0 additions and 12 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue