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: ed990e68e519ebc94682f3d34ca2e319e53b21c3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
public class A {
	public void getDocument() {
		while (true) {
			newFilename =
				(new StringBuffer(_workingDir).append(File.separator)
											  .append(_localFilename)
											  .append(documentCount)
											  .append(EXTENTION)).toString();
		}
	}
}

Back to the top