Skip to main content
summaryrefslogtreecommitdiffstats
blob: c4d77ab9289036834da492410aaec2dad39c3a5f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import java.util.Vector;

public class EclipseFormatTest
{
	public static void main(String[] args)
	{
		Vector v2 = new Vector();
		{{{String a = ((String) v2.get(0)).trim(), b = (String)
		v2.get(1), c = (String) v2
		.get(2);}}
		}
	}
}

Back to the top