Skip to content

Commit

Permalink
fix extra argument (#422)
Browse files Browse the repository at this point in the history
  • Loading branch information
ssenchenko authored Jun 16, 2023
1 parent ae2e041 commit 20c02df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/rpdk/java/templates/init/guided_aws/TagHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public static Set<Tag> convertToSet(final Map<String, String> tagMap) {
*/
public final boolean shouldUpdateTags(final ResourceModel resourceModel, final ResourceHandlerRequest<ResourceModel> handlerRequest) {
final Map<String, String> previousTags = getPreviouslyAttachedTags(handlerRequest);
final Map<String, String> desiredTags = getNewDesiredTags(resourceModel, handlerRequest);
final Map<String, String> desiredTags = getNewDesiredTags(handlerRequest);
return ObjectUtils.notEqual(previousTags, desiredTags);
}

Expand Down

0 comments on commit 20c02df

Please sign in to comment.