Skip to content

Commit

Permalink
For #8479, Fix the problem that some singleton classes construction m…
Browse files Browse the repository at this point in the history
…ethod not private
  • Loading branch information
MRGUOKING committed Jun 3, 2022
1 parent d8238de commit fc2e747
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public class AuthPluginManager {
*/
private final Map<String, AuthPluginService> authServiceMap = new HashMap<>();

public AuthPluginManager() {
private AuthPluginManager() {
initAuthServices();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class EncryptionPluginManager {

private static final EncryptionPluginManager INSTANCE = new EncryptionPluginManager();

public EncryptionPluginManager() {
private EncryptionPluginManager() {
loadInitial();
}

Expand Down

0 comments on commit fc2e747

Please sign in to comment.