blob: f762257e7df7bca8682b5abdcbf69203c1c55bde [file] [log] [blame]
public int foo(int size, int max) {
if (size < max) {
try {
size = (long) stream.available();
}
catch (IOException e) {
}
}
else
if (size == max) {
++size;
}
else {
--size;
}
return size;
}