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