This is an automated email from the ASF dual-hosted git repository. riemer pushed a commit to branch rel/0.91.0 in repository https://gitbox.apache.org/repos/asf/streampipes.git
commit fdcc5f7e0617936f1ee0ce841e4a377240192e99 Author: Dominik Riemer <[email protected]> AuthorDate: Fri Feb 17 10:31:31 2023 +0100 [hotfix] Add empty constructor to DataExplorerQuery --- .../apache/streampipes/dataexplorer/v4/query/DataExplorerQueryV4.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/streampipes-data-explorer/src/main/java/org/apache/streampipes/dataexplorer/v4/query/DataExplorerQueryV4.java b/streampipes-data-explorer/src/main/java/org/apache/streampipes/dataexplorer/v4/query/DataExplorerQueryV4.java index 8cf455d8e..aea334bf6 100644 --- a/streampipes-data-explorer/src/main/java/org/apache/streampipes/dataexplorer/v4/query/DataExplorerQueryV4.java +++ b/streampipes-data-explorer/src/main/java/org/apache/streampipes/dataexplorer/v4/query/DataExplorerQueryV4.java @@ -69,6 +69,10 @@ public class DataExplorerQueryV4 { private Environment env; + public DataExplorerQueryV4() { + + } + public DataExplorerQueryV4(Map<String, QueryParamsV4> params, String forId) { this(params);
