From d8cd7098b4bcfbfd76915b9ecefb2c7ea320e149 Mon Sep 17 00:00:00 2001 From: Chandra Sanivarapu Date: Wed, 25 Dec 2019 10:50:01 +0900 Subject: [PATCH] HDFS-15073. Replace curator-shaded guava import with the standard one (#1782) --- .../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 a0e35f6c2a7..79fd543c3be 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;