HBASE-13315 BufferedMutator should be @InterfaceAudience.Public (Solomon Duskis)

This commit is contained in:
Nick Dimiduk 2015-03-23 12:16:29 -07:00
parent 65d3781897
commit 1428a59caf
2 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@ import java.util.List;
* @see Connection
* @since 1.0.0
*/
@InterfaceAudience.Private
@InterfaceAudience.Public
@InterfaceStability.Evolving
public interface BufferedMutator extends Closeable {
/**

View File

@ -42,7 +42,7 @@ import java.util.concurrent.TimeUnit;
* @since 1.0.0
*/
@InterfaceAudience.Private
@InterfaceStability.Stable
@InterfaceStability.Evolving
public class BufferedMutatorImpl implements BufferedMutator {
private static final Log LOG = LogFactory.getLog(BufferedMutatorImpl.class);