Commit 93f39213 authored by Stephane Nicoll's avatar Stephane Nicoll

Polish

parent 8d08e816
...@@ -17,6 +17,7 @@ ...@@ -17,6 +17,7 @@
package org.springframework.boot.autoconfigure.jms.activemq; package org.springframework.boot.autoconfigure.jms.activemq;
import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.boot.context.properties.DeprecatedConfigurationProperty;
/** /**
* Configuration properties for ActiveMQ. * Configuration properties for ActiveMQ.
...@@ -73,6 +74,7 @@ public class ActiveMQProperties { ...@@ -73,6 +74,7 @@ public class ActiveMQProperties {
* @deprecated since 1.4 in favor of "spring.activemq.pool.enabled" * @deprecated since 1.4 in favor of "spring.activemq.pool.enabled"
*/ */
@Deprecated @Deprecated
@DeprecatedConfigurationProperty(replacement = "spring.activemq.pool.enabled")
public boolean isPooled() { public boolean isPooled() {
return getPool().isEnabled(); return getPool().isEnabled();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment