Skip to content

Commit

Permalink
Relax the wrapped Action in ChangePhase to a more general interface.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 552930137
Change-Id: I1fb116c0ddcf8f915b7aba0a41126e223eb2087c
  • Loading branch information
Googler authored and copybara-github committed Aug 1, 2023
1 parent cf14039 commit 88d4b1b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,13 @@ public Instant getStartTimeInstant() {
* runtime of the entire CriticalPathComponent.
*/
public static final class ChangePhase implements ExtendedEventHandler.Postable {
private final Action action;
private final ActionAnalysisMetadata action;

public ChangePhase(Action action) {
public ChangePhase(ActionAnalysisMetadata action) {
this.action = action;
}

public Action getAction() {
public ActionAnalysisMetadata getAction() {
return this.action;
}
}
Expand Down

0 comments on commit 88d4b1b

Please sign in to comment.