Github user dawidwys commented on a diff in the pull request:

    https://github.com/apache/flink/pull/4331#discussion_r134170202
  
    --- Diff: 
flink-libraries/flink-cep/src/main/java/org/apache/flink/cep/nfa/NFA.java ---
    @@ -695,10 +778,9 @@ private boolean 
checkFilterCondition(ComputationState<T> computationState, Itera
                }
                // for a given computation state, we cannot have more than one 
matching patterns.
                Preconditions.checkState(paths.size() == 1);
    -
    -           Map<String, List<T>> result = new HashMap<>();
    +           Map<String, List<T>> result = new LinkedHashMap<>();
                Map<String, List<T>> path = paths.get(0);
    -           for (String key: path.keySet()) {
    +           for (String key : path.keySet()) {
    --- End diff --
    
    Unrelated change


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to