mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-09 18:15:23 +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)
|
if (_localFileInputStream != null)
|
||||||
{
|
{
|
||||||
int result = _localFileInputStream.read();
|
int result = _localFileInputStream.read();
|
||||||
if (result == -1)
|
|
||||||
{
|
|
||||||
System.out.println("result is -1");
|
|
||||||
}
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -134,10 +130,6 @@ public class DStoreInputStream extends InputStream
|
||||||
if (_localFileInputStream != null)
|
if (_localFileInputStream != null)
|
||||||
{
|
{
|
||||||
int result = _localFileInputStream.read(b, off, len);
|
int result = _localFileInputStream.read(b, off, len);
|
||||||
if (result == -1)
|
|
||||||
{
|
|
||||||
System.out.println("result is -1");
|
|
||||||
}
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -148,10 +140,6 @@ public class DStoreInputStream extends InputStream
|
||||||
if (_localFileInputStream != null)
|
if (_localFileInputStream != null)
|
||||||
{
|
{
|
||||||
int result = _localFileInputStream.read(b);
|
int result = _localFileInputStream.read(b);
|
||||||
if (result == -1)
|
|
||||||
{
|
|
||||||
System.out.println("result is -1");
|
|
||||||
}
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Add table
Reference in a new issue