From e491d990de882d6248d1a74c76d8ad85d659ac0e Mon Sep 17 00:00:00 2001 From: Juergen Hoeller Date: Wed, 31 Oct 2012 02:10:11 +0100 Subject: [PATCH] Minor polishing --- .../assembler/AbstractReflectiveMBeanInfoAssembler.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/org.springframework.context/src/main/java/org/springframework/jmx/export/assembler/AbstractReflectiveMBeanInfoAssembler.java b/org.springframework.context/src/main/java/org/springframework/jmx/export/assembler/AbstractReflectiveMBeanInfoAssembler.java index 70b52f96a6b..a701a5d0f62 100644 --- a/org.springframework.context/src/main/java/org/springframework/jmx/export/assembler/AbstractReflectiveMBeanInfoAssembler.java +++ b/org.springframework.context/src/main/java/org/springframework/jmx/export/assembler/AbstractReflectiveMBeanInfoAssembler.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2010 the original author or authors. + * Copyright 2002-2012 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -164,6 +164,7 @@ public abstract class AbstractReflectiveMBeanInfoAssembler extends AbstractMBean */ protected static final String FIELD_METRIC_CATEGORY = "metricCategory"; + /** * Default value for the JMX field "currencyTimeLimit". */ @@ -223,7 +224,7 @@ public abstract class AbstractReflectiveMBeanInfoAssembler extends AbstractMBean * Return whether strict casing for attributes is enabled. */ protected boolean isUseStrictCasing() { - return useStrictCasing; + return this.useStrictCasing; } /** @@ -250,7 +251,7 @@ public abstract class AbstractReflectiveMBeanInfoAssembler extends AbstractMBean * Return whether to expose the JMX descriptor field "class" for managed operations. */ protected boolean isExposeClassDescriptor() { - return exposeClassDescriptor; + return this.exposeClassDescriptor; } @@ -447,7 +448,6 @@ public abstract class AbstractReflectiveMBeanInfoAssembler extends AbstractMBean */ protected abstract boolean includeOperation(Method method, String beanKey); - /** * Get the description for a particular attribute. *

The default implementation returns a description for the operation