kevinrr888 commented on code in PR #5547:
URL: https://github.com/apache/accumulo/pull/5547#discussion_r2116202781


##########
core/src/test/java/org/apache/accumulo/core/file/BloomFilterLayerLookupTest.java:
##########
@@ -56,7 +55,7 @@ public class BloomFilterLayerLookupTest extends WithTestNames 
{
   private static final Logger log = 
LoggerFactory.getLogger(BloomFilterLayerLookupTest.class);
 
   @TempDir
-  private static File tempDir;
+  private static java.nio.file.Path tempDir;

Review Comment:
   ```suggestion
     private static Path tempDir;
   ```
   Should import



##########
hadoop-mapreduce/src/main/java/org/apache/accumulo/hadoopImpl/mapreduce/lib/DistributedCacheHelper.java:
##########
@@ -58,15 +57,14 @@ public static void addCacheFile(Job job, String path, 
String fragment) {
   public static InputStream openCachedFile(String path, String fragment, 
Configuration conf) {
     // try to get it from the local copy provided by the distributed cache
     java.nio.file.Path p = java.nio.file.Path.of(fragment);

Review Comment:
   ```suggestion
       Path p = Path.of(fragment);
   ```
   should import



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@accumulo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to