[
https://issues.apache.org/jira/browse/ZOOKEEPER-3497?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17051744#comment-17051744
]
gforce tian commented on ZOOKEEPER-3497:
----------------------------------------
Hi [~tison], I create [pr|https://github.com/apache/zookeeper/pull/1276] for
this issue,could you help me review the code? I'm glad to hear some advice for
you.
> org.apache.zookeeper.jmx.MBeanRegistry 单例 构造函数没有私有化
> ---------------------------------------------------
>
> Key: ZOOKEEPER-3497
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-3497
> Project: ZooKeeper
> Issue Type: Improvement
> Components: jmx
> Affects Versions: 3.6.0
> Reporter: jwhao
> Priority: Minor
>
> org.apache.zookeeper.jmx.MBeanRegistry
> 此类使用单例模式实现,项目中其他模块也没有手动new此类,但是此类的构造函数没有私有化
> public MBeanRegistry () {
> try {
> mBeanServer = ManagementFactory.getPlatformMBeanServer();
> } catch (Error e) {
> // Account for running within IKVM and create a new MBeanServer
> // if the PlatformMBeanServer does not exist.
> mBeanServer = MBeanServerFactory.createMBeanServer();
> }
> }
--
This message was sent by Atlassian Jira
(v8.3.4#803005)