Skip to content

Commit

Permalink
Fix NPE in RunningDevService which represens a shared service
Browse files Browse the repository at this point in the history
  • Loading branch information
sberyozkin committed Jun 19, 2023
1 parent 2971d53 commit 28034bb
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,9 @@ public boolean isOwner() {

@Override
public void close() throws IOException {
this.closeable.close();
if (this.closeable != null) {
this.closeable.close();
}
}

public DevServicesResultBuildItem toBuildItem() {
Expand Down

0 comments on commit 28034bb

Please sign in to comment.