You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by jm...@apache.org on 2021/03/26 14:05:56 UTC

[accumulo-examples] branch main updated: Update SequentialBatchWriter.java

This is an automated email from the ASF dual-hosted git repository.

jmark99 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo-examples.git


The following commit(s) were added to refs/heads/main by this push:
     new 6c3a912  Update SequentialBatchWriter.java
6c3a912 is described below

commit 6c3a9120ac4b124275a85d1f2fec2e7931cc443d
Author: Mark Owens <jm...@apache.org>
AuthorDate: Fri Mar 26 10:05:47 2021 -0400

    Update SequentialBatchWriter.java
    
    Fix org.apache.accumulo.core.client import statement in SequentialBatchWriter. Replace the '*' catch-all with specified imports.
---
 .../apache/accumulo/examples/client/SequentialBatchWriter.java    | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/accumulo/examples/client/SequentialBatchWriter.java b/src/main/java/org/apache/accumulo/examples/client/SequentialBatchWriter.java
index 2dd5667..ea8ca2d 100644
--- a/src/main/java/org/apache/accumulo/examples/client/SequentialBatchWriter.java
+++ b/src/main/java/org/apache/accumulo/examples/client/SequentialBatchWriter.java
@@ -18,7 +18,13 @@ package org.apache.accumulo.examples.client;
 
 import java.util.Random;
 
-import org.apache.accumulo.core.client.*;
+import org.apache.accumulo.core.client.Accumulo;
+import org.apache.accumulo.core.client.AccumuloClient;
+import org.apache.accumulo.core.client.AccumuloException;
+import org.apache.accumulo.core.client.AccumuloSecurityException;
+import org.apache.accumulo.core.client.BatchWriter;
+import org.apache.accumulo.core.client.TableExistsException;
+import org.apache.accumulo.core.client.TableNotFoundException;
 import org.apache.accumulo.core.data.Mutation;
 import org.apache.accumulo.core.data.Value;
 import org.apache.accumulo.examples.cli.ClientOpts;