Repository: flink Updated Branches: refs/heads/master 64f32f929 -> 1726a63b1
[hotfix] [runtime] Remove accidental reference to Hadoop StringUtils in CheckpointStorageLocationReference Project: http://git-wip-us.apache.org/repos/asf/flink/repo Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/1726a63b Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/1726a63b Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/1726a63b Branch: refs/heads/master Commit: 1726a63b1c54ea2dd0a83bb29a49e75c8e4a518d Parents: 64f32f9 Author: Stephan Ewen <[email protected]> Authored: Mon May 14 10:15:36 2018 +0200 Committer: Stephan Ewen <[email protected]> Committed: Mon May 14 10:34:17 2018 +0200 ---------------------------------------------------------------------- .../flink/runtime/state/CheckpointStorageLocationReference.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flink/blob/1726a63b/flink-runtime/src/main/java/org/apache/flink/runtime/state/CheckpointStorageLocationReference.java ---------------------------------------------------------------------- diff --git a/flink-runtime/src/main/java/org/apache/flink/runtime/state/CheckpointStorageLocationReference.java b/flink-runtime/src/main/java/org/apache/flink/runtime/state/CheckpointStorageLocationReference.java index 58d08c5..503ea85 100644 --- a/flink-runtime/src/main/java/org/apache/flink/runtime/state/CheckpointStorageLocationReference.java +++ b/flink-runtime/src/main/java/org/apache/flink/runtime/state/CheckpointStorageLocationReference.java @@ -18,7 +18,7 @@ package org.apache.flink.runtime.state; -import org.apache.hadoop.util.StringUtils; +import org.apache.flink.util.StringUtils; import java.io.ObjectStreamException; import java.util.Arrays;
