Skip to content

Commit

Permalink
Fix StateMachine callback context spotbug issue (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
hongkuntian committed May 28, 2024
1 parent 9d1965b commit 4bc3425
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,15 @@
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import software.amazon.cloudformation.proxy.StdCallbackContext;

@Data
@NoArgsConstructor
@AllArgsConstructor
@Builder
@EqualsAndHashCode(callSuper = true)
public class CallbackContext extends StdCallbackContext {
@Builder.Default
private boolean deletionStarted = false;
Expand Down

0 comments on commit 4bc3425

Please sign in to comment.