Skip to content

Commit

Permalink
Merge branch '2.1.x' into 2.2.x
Browse files Browse the repository at this point in the history
Closes gh-19032
  • Loading branch information
snicoll committed Nov 16, 2019
2 parents ba539d9 + 2c1e70d commit 3d41826
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -752,12 +752,12 @@ Consider the following class:

[source,java,indent=0,subs="verbatim,quotes,attributes"]
----
@ConfigurationProperties(prefix="acme.messaging")
@ConfigurationProperties(prefix = "acme.messaging")
public class MessagingProperties {
private List<String> addresses = new ArrayList<>(Arrays.asList("a", "b")) ;
private List<String> addresses = new ArrayList<>(Arrays.asList("a", "b"));
private ContainerType = ContainerType.SIMPLE;
private ContainerType containerType = ContainerType.SIMPLE;
// ... getter and setters
Expand Down

0 comments on commit 3d41826

Please sign in to comment.