summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/refactoring/migrateTypeSignature/typePrimsubChar2Lvalue/after/Type.java
blob: 8b94e45d56268c8c84236fb17d8f80fb5f086c0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class Type {
	private char myByte;
	private char myShort;
	private char myChar;
	private int myInt;
	private long myLong;
	private float myFloat;
	private double myDouble;
	public void meth(char p) {
		myByte = p;
		myShort = p;
		myChar = p;
		myInt = p;
		myLong = p;
		myFloat = p;
		myDouble = p;
	}
}