Skip to content

Commit

Permalink
fix: change the isError to not use the state (#7483)
Browse files Browse the repository at this point in the history
* isError is not used
  • Loading branch information
wcarlson5 authored May 13, 2021
1 parent 5571773 commit 41ec430
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@ public interface QueryMetadata {

KafkaStreams.State getState();

boolean isError();

String getExecutionPlan();

String getQueryApplicationId();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -227,10 +227,6 @@ public State getState() {
return kafkaStreams.state();
}

public boolean isError() {
return getState() == State.ERROR;
}

public String getExecutionPlan() {
return executionPlan;
}
Expand Down

0 comments on commit 41ec430

Please sign in to comment.