summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/refactoring/migrateTypeSignature/typeAutoboxDouble2Rvalue/after/Type.java
blob: ac0e3c68ebdb7508bc32dbae5f081e908544de0d (plain)
1
2
3
4
5
6
class Type {
	private double myField;
	public void meth(Double p) {
		myField = p;
	}
}