Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: b923b3e60ef5f873646c67365d27c2e20c5cc96a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class F {
	{
		if (size < currentSize) {
			try {
				size = (long) inStream.available();
			} catch (IOException e) {
			}
		} else if (size == currentSize) {
			++size;
		} else {
			--size;
		}
	}
}

Back to the top