diff --git a/collector/src/main/java/io/prometheus/jmx/JmxScraper.java b/collector/src/main/java/io/prometheus/jmx/JmxScraper.java index 01346c05..3cab0a33 100644 --- a/collector/src/main/java/io/prometheus/jmx/JmxScraper.java +++ b/collector/src/main/java/io/prometheus/jmx/JmxScraper.java @@ -213,7 +213,8 @@ private void scrapeBean(MBeanServerConnection beanConn, ObjectName mBeanName) { } for (Object object : attributes) { - // The contents of an AttributeList should all be Attribute instances, but we'll verify that. + // The contents of an AttributeList should all be Attribute instances, but we'll verify + // that. if (object instanceof Attribute) { Attribute attribute = (Attribute) object; String attributeName = attribute.getName();