Github user kl0u commented on a diff in the pull request:
https://github.com/apache/flink/pull/3477#discussion_r105704335
--- Diff:
flink-libraries/flink-cep/src/test/java/org/apache/flink/cep/nfa/NFAITCase.java
---
@@ -272,37 +372,42 @@ public void testBranchingPattern() {
public boolean filter(Event value) throws Exception {
return value.getName().equals("start");
}
- })
-
.followedBy("middle-first").subtype(SubEvent.class).where(new
FilterFunction<SubEvent>() {
+ }).followedBy("middle-first").subtype(SubEvent.class)
+ .where(new FilterFunction<SubEvent>() {
private static final long serialVersionUID =
6215754202506583964L;
@Override
public boolean filter(SubEvent value) throws
Exception {
- return value.getVolume() > 5.0;
+ return value.getVolume() >
+ 5.0;
}
})
-
.followedBy("middle-second").subtype(SubEvent.class).where(new
FilterFunction<SubEvent>() {
+ .followedBy("middle-second").subtype(SubEvent.class)
+ .where(new FilterFunction<SubEvent>() {
private static final long serialVersionUID =
6215754202506583964L;
@Override
public boolean filter(SubEvent value) throws
Exception {
- return
value.getName().equals("next-one");
+ return value.getName()
+ .equals(
+ "next-one");
}
})
.followedBy("end").where(new FilterFunction<Event>() {
private static final long serialVersionUID =
7056763917392056548L;
@Override
public boolean filter(Event value) throws
Exception {
- return value.getName().equals("end");
+ return value.getName()
+ .equals("end");
}
});
NFA<Event> nfa = NFACompiler.compile(pattern,
Event.createTypeSerializer(), false);
List<Map<String, Event>> resultingPatterns = new ArrayList<>();
- for (StreamRecord<Event> inputEvent: inputEvents) {
+ for (StreamRecord<Event> inputEvent : inputEvents) {
--- End diff --
this can be as before, in one line.
---
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.
---