summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/refactoring/migrateTypeSignature/typePrimsubByte2Rvalue/after/Type.java
blob: ac3a40879f5b73298696aae1775e329fc0301e28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class Type {
	private byte myField;
	public void meth(byte pb, byte ps, byte pc, byte pi, byte pl, byte pf, byte pd) {
		myField = pb;
		myField = ps;
		myField = pc;
		myField = pi;
		myField = pl;
		myField = pf;
		myField = pd;
	}
}