Skip to content

Commit

Permalink
Fix inheritance issue
Browse files Browse the repository at this point in the history
  • Loading branch information
HardNorth committed Nov 1, 2023
1 parent 6cf4e0f commit f85a430
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
*
* @author Dzmitry Mikhievich
*/
abstract class AbstractLaunchContext {
public abstract class AbstractLaunchContext {

private Maybe<String> launchId;
private final AtomicReference<Boolean> launchInProgress = new AtomicReference<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
*
* @author Dzmitry Mikhievich
*/
abstract class NodeFootprint<T extends NodeInfo> extends ReportableItemFootprint<T> {
public abstract class NodeFootprint<T extends NodeInfo> extends ReportableItemFootprint<T> {

/*
* Approximate fixtures count, which should match most cases. This is
Expand Down

0 comments on commit f85a430

Please sign in to comment.