summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/refactoring/migrateTypeSignature/typeAutoboxLong2Rvalue/before/Type.java
blob: ceceb07caa8eb0495e4312c4c7b79ec1407194b9 (plain)
1
2
3
4
5
6
class Type {
	private Long myField;
	public void meth(Long p) {
		myField = p;
	}
}