Skip to content

Commit

Permalink
Fix merge conflicts with origin/master
Browse files Browse the repository at this point in the history
  • Loading branch information
ramindu90 committed Jul 6, 2020
1 parent ca6886d commit 53f0155
Showing 1 changed file with 4 additions and 2 deletions.
Expand Up @@ -210,7 +210,9 @@ public Class[] getSupportedInputEventClasses() {
* @throws InterruptedException if it does not throw the exception immediately due to streaming
*/
@Override
protected void mapAndProcess(Object eventObject, InputEventHandler inputEventHandler) throws InterruptedException {
protected void mapAndProcess(Object eventObject, InputEventHandler inputEventHandler)
throws InterruptedException, MappingFailedException {
List<ErroneousEvent> failedEvents = new ArrayList<>(0);
Event[] result = new io.siddhi.core.event.Event[0];
try {
if (eventObject == null) {
Expand All @@ -225,7 +227,7 @@ protected void mapAndProcess(Object eventObject, InputEventHandler inputEventHan
+ eventObject.getClass().getCanonicalName());
} else {
if (pointer != 0) {
result = convertToEvents(eventObject);
result = convertToEvents(eventObject, failedEvents);
}
pointer++;
}
Expand Down

0 comments on commit 53f0155

Please sign in to comment.