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