Skip to content

Commit

Permalink
removing unneeded out
Browse files Browse the repository at this point in the history
  • Loading branch information
slapula committed Oct 12, 2018
1 parent d3995af commit 819b1d6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions aws/data_source_aws_ecr_lifecycle_policy_document.go
Original file line number Diff line number Diff line change
Expand Up @@ -167,9 +167,8 @@ func dataSourceAwsEcrLifecyclePolicyDocumentRead(d *schema.ResourceData, meta in
}

func dataSourceAwsEcrLifecyclePolicyDocumentMakeSelection(in []interface{}) EcrLifecyclePolicyStatementSelectionSet {
out := EcrLifecyclePolicySelection{}
item := in[0].(map[string]interface{})
out = EcrLifecyclePolicySelection{
out := EcrLifecyclePolicySelection{
TagStatus: item["tag_status"].(string),
TagPrefixList: item["tag_prefix_list"].([]interface{}),
CountType: item["count_type"].(string),
Expand Down

0 comments on commit 819b1d6

Please sign in to comment.