You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by se...@apache.org on 2017/10/27 16:26:22 UTC

[5/8] flink git commit: [hotfix] [checkpoints] Remove incorrect 'Serializable' from StateBackendFactory

[hotfix] [checkpoints] Remove incorrect 'Serializable' from StateBackendFactory


Project: http://git-wip-us.apache.org/repos/asf/flink/repo
Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/a6df90ee
Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/a6df90ee
Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/a6df90ee

Branch: refs/heads/master
Commit: a6df90ee04d343538c8c3a57bcbb563aac65a9c8
Parents: 9c21c74
Author: Stephan Ewen <se...@apache.org>
Authored: Wed Oct 25 19:04:58 2017 +0200
Committer: Stephan Ewen <se...@apache.org>
Committed: Fri Oct 27 17:37:23 2017 +0200

----------------------------------------------------------------------
 .../java/org/apache/flink/runtime/state/StateBackendFactory.java  | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/a6df90ee/flink-runtime/src/main/java/org/apache/flink/runtime/state/StateBackendFactory.java
----------------------------------------------------------------------
diff --git a/flink-runtime/src/main/java/org/apache/flink/runtime/state/StateBackendFactory.java b/flink-runtime/src/main/java/org/apache/flink/runtime/state/StateBackendFactory.java
index 78c976a..c0f0976 100644
--- a/flink-runtime/src/main/java/org/apache/flink/runtime/state/StateBackendFactory.java
+++ b/flink-runtime/src/main/java/org/apache/flink/runtime/state/StateBackendFactory.java
@@ -23,7 +23,6 @@ import org.apache.flink.configuration.Configuration;
 import org.apache.flink.configuration.IllegalConfigurationException;
 
 import java.io.IOException;
-import java.io.Serializable;
 
 /**
  * A factory to create a specific state backend. The state backend creation gets a Configuration
@@ -35,7 +34,7 @@ import java.io.Serializable;
  * @param <T> The type of the state backend created.
  */
 @PublicEvolving
-public interface StateBackendFactory<T extends StateBackend> extends Serializable {
+public interface StateBackendFactory<T extends StateBackend> {
 
 	/**
 	 * Creates the state backend, optionally using the given configuration.