From 328c522d491c0044dda700f8899bcbea6018e76d Mon Sep 17 00:00:00 2001 From: csanivar Date: Wed, 25 Dec 2019 10:00:37 +0900 Subject: [PATCH] Replace curator-shaded guava import with the standard one --- .../apache/hadoop/hdfs/protocol/SnapshotDiffReportListing.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/protocol/SnapshotDiffReportListing.java b/hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/protocol/SnapshotDiffReportListing.java index a0e35f6c2a71e4..79fd543c3be900 100644 --- a/hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/protocol/SnapshotDiffReportListing.java +++ b/hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/protocol/SnapshotDiffReportListing.java @@ -20,7 +20,7 @@ import java.util.Collections; import java.util.List; -import org.apache.curator.shaded.com.google.common.base.Preconditions; +import com.google.common.base.Preconditions; import org.apache.hadoop.hdfs.DFSUtilClient;