Skip to content

Commit

Permalink
Code Style Revisions
Browse files Browse the repository at this point in the history
  • Loading branch information
jschwarzwalder committed Jun 17, 2019
1 parent 3cf9aee commit f387e40
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion javav2/example_code/pinpoint/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>bom</artifactId>
<version>2.5.10</version>
<version>2.5.60</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,10 @@ private static EndpointResponse createEndpoint(PinpointClient client, String app
}

private static EndpointRequest createEndpointRequestData() {
HashMap<String, List<String>> customAttributes = new HashMap<>();
List<String> favoriteTeams = new ArrayList<>();
favoriteTeams.add("Lakers");
favoriteTeams.add("Warriors");
HashMap<String, List<String>> customAttributes = new HashMap<>();
customAttributes.put("team", favoriteTeams);


Expand Down

0 comments on commit f387e40

Please sign in to comment.