git://secure.phpeclipse.com
/
phpeclipse.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
c4ae2262d5992d0e7527fc2a9d30d1501e139c87
[phpeclipse.git]
/
1
{
2
3
if (size < currentSize) {
4
try {
5
size = inStream.available();
6
} catch (IOException e) {
7
}
8
}
9
else if (size == currentSize) {
10
++size;
11
}
12
else {
13
--size;
14
}
15
16
}