Merge branch '1.2.x'

This commit is contained in:
Phillip Webb
2015-04-13 11:41:03 -07:00

View File

@@ -638,6 +638,14 @@ For example, given the following `@ConfigurationProperties` class:
private String firstName;
public String getFirstName() {
return this.firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
}
----