Skip to content

Commit

Permalink
Merge pull request #1444 from dimagi/revert-1425-rc/results-title-res…
Browse files Browse the repository at this point in the history
…ponse

Revert "rc/results-title-response"
  • Loading branch information
Jtang-1 authored Aug 16, 2023
2 parents 0549eb7 + 29ef01e commit 3c702f7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ public class QueryResponseBean extends MenuBean {
private DisplayElement[] displays;
private final String type = "query";
private String description;
private String resultsTitle;

QueryResponseBean() {
}
Expand All @@ -36,18 +35,10 @@ public void setDescription(String description) {
this.description = description;
}

public void setResultsTitle(String resultsTitle) {
this.resultsTitle = resultsTitle;
}

public String getDescription() {
return description;
}

public String getResultsTitle() {
return resultsTitle;
}

private void setDisplays(DisplayElement[] displays) {
this.displays = displays;
}
Expand Down Expand Up @@ -94,7 +85,6 @@ public QueryResponseBean(QueryScreen queryScreen) {
}
setTitle(queryScreen.getScreenTitle());
setDescription(queryScreen.getDescriptionText());
setResultsTitle(queryScreen.getResultsTitle());
setQueryKey(querySession.getCommand());
}

Expand Down

0 comments on commit 3c702f7

Please sign in to comment.