Skip to content

Commit

Permalink
HBASE-27346. Removed unnecessary interface audience annotiations
Browse files Browse the repository at this point in the history
  • Loading branch information
anmolnar committed Sep 1, 2022
1 parent 9dee9cf commit 4a6b887
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,14 @@
package org.apache.hadoop.hbase.io.crypto.tls;

import java.util.Objects;
import org.apache.yetus.audience.InterfaceAudience;

/**
* This file has been copied from the Apache ZooKeeper project.
* @see <a href=
* "https://github.com/apache/zookeeper/blob/c74658d398cdc1d207aa296cb6e20de00faec03e/zookeeper-server/src/main/java/org/apache/zookeeper/common/FileKeyStoreLoaderBuilderProvider.java">Base
* revision</a>
*/
@InterfaceAudience.Private
public class FileKeyStoreLoaderBuilderProvider {
class FileKeyStoreLoaderBuilderProvider {
/**
* Returns a {@link FileKeyStoreLoader.Builder} that can build a loader which loads keys and certs
* from files of the given {@link KeyStoreFileType}.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@
*/
package org.apache.hadoop.hbase.io.crypto.tls;

import org.apache.yetus.audience.InterfaceAudience;

/**
* This enum represents the file type of a KeyStore or TrustStore. Currently, JKS (Java keystore),
* PEM, PKCS12, and BCFKS types are supported.
Expand All @@ -28,8 +26,7 @@
* "https://github.com/apache/zookeeper/blob/c74658d398cdc1d207aa296cb6e20de00faec03e/zookeeper-server/src/main/java/org/apache/zookeeper/common/KeyStoreFileType.java">Base
* revision</a>
*/
@InterfaceAudience.Private
public enum KeyStoreFileType {
enum KeyStoreFileType {
JKS(".jks"),
PEM(".pem"),
PKCS12(".p12"),
Expand Down

0 comments on commit 4a6b887

Please sign in to comment.