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: ab1853372d1b11bbe904cb1bf7a67048db973cf0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.ibm.web.test;
public class B {

	/**
	 * Constructor for B
	 */
	public B() {
		super();
	}

	public static void main(String[] args) {
	}
}

Back to the top