Skip to content

Commit

Permalink
Merge branch '2.2.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
snicoll committed Nov 16, 2019
2 parents e01a1ba + 3d41826 commit 0b89b2d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
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 0b89b2d

Please sign in to comment.