Skip to content

Commit

Permalink
Merge branch 'dev4' of https://github.com/Col-E/Recaf into dev4
Browse files Browse the repository at this point in the history
  • Loading branch information
Col-E committed May 23, 2024
2 parents 2f6474a + d3f4ae1 commit a17d342
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -341,6 +341,10 @@ Tab tab() {

// JMX tiles
JmxBeanServerConnection jmxConnection = attachManager.getJmxServerConnection(descriptor);
if (jmxConnection == null) {
logger.warn("Failed to get JMX connection for descriptor: {}", descriptor);
return;
}
List<JmxWrapper> beanSuppliers = List.of(
new JmxWrapper(CarbonIcons.OBJECT_STORAGE, "attach.tab.classloading", jmxConnection::getClassloadingBeanInfo),
new JmxWrapper(CarbonIcons.QUERY_QUEUE, "attach.tab.compilation", jmxConnection::getCompilationBeanInfo),
Expand Down

0 comments on commit a17d342

Please sign in to comment.