Skip to main content
summaryrefslogtreecommitdiffstats
blob: 04718cc624857d0673f04a4b1150e55c8184cc99 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
try {
	System.out.println();
	int i = 0;
	return new Runnable() {
		public void run() {
			System.out.println();
		}
	};
} catch (Exception e) {
}

Back to the top