Skip to content

Commit

Permalink
[FLINK-2822] [streaming] Remove scala.Serializable imports
Browse files Browse the repository at this point in the history
  • Loading branch information
gyfora authored and mbalassi committed Oct 6, 2015
1 parent 4cb9670 commit 4c5d43b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

import org.apache.flink.streaming.api.windowing.triggers.Trigger;
import org.apache.flink.streaming.api.windowing.windows.Window;
import scala.Serializable;
import java.io.Serializable;

import java.util.Collection;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

import org.apache.flink.streaming.api.windowing.windows.Window;
import org.apache.flink.streaming.runtime.streamrecord.StreamRecord;
import scala.Serializable;
import java.io.Serializable;

/**
* An {@code Evictor} can remove elements from a pane before it is being processed and after
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
package org.apache.flink.streaming.api.windowing.triggers;

import org.apache.flink.streaming.api.windowing.windows.Window;
import scala.Serializable;
import java.io.Serializable;

/**
* A {@code Trigger} determines when a pane of a window should be evaluated to emit the
Expand Down

0 comments on commit 4c5d43b

Please sign in to comment.