Repository: flink Updated Branches: refs/heads/release-1.5 a809a2650 -> 865c60848
[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/865c6084 Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/865c6084 Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/865c6084 Branch: refs/heads/release-1.5 Commit: 865c608484dab81fe87bf29dae6cfd90c1ae0b64 Parents: a809a26 Author: Stephan Ewen <[email protected]> Authored: Mon May 14 10:15:36 2018 +0200 Committer: Stephan Ewen <[email protected]> Committed: Mon May 14 10:25:42 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/865c6084/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;
