mirror of https://github.com/apache/activemq.git
AMQ-9161 - Fix javadoc comment so Xbean parsing works (#990)
The previous comment added in PR #989 added a second javadoc comment which prevent Xbean from generating the correct schema
This commit is contained in:
parent
5fff8500b6
commit
2e0eca7189
|
@ -82,14 +82,12 @@ import org.slf4j.LoggerFactory;
|
|||
* {@link Journal} and then check pointing asynchronously on a timeout with some
|
||||
* other long term persistent storage.
|
||||
*
|
||||
* @deprecated - Deprecated for removal as this PersistenceAdapter is no longer used and
|
||||
* replaced by the JDBCPersistenceAdapter.
|
||||
*
|
||||
* @org.apache.xbean.XBean
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* Deprecated for removal as this PersistenceAdapter is no longer used and
|
||||
* replaced by the JDBCPersistenceAdapter.
|
||||
*/
|
||||
@Deprecated(forRemoval = true)
|
||||
public class JournalPersistenceAdapter implements PersistenceAdapter, JournalEventListener, UsageListener, BrokerServiceAware {
|
||||
|
||||
|
|
|
@ -36,14 +36,12 @@ import org.slf4j.LoggerFactory;
|
|||
|
||||
/**
|
||||
* Factory class that can create PersistenceAdapter objects.
|
||||
*
|
||||
* @org.apache.xbean.XBean
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* Deprecated for removal as this PersistenceAdapter is no longer used and
|
||||
*
|
||||
* @deprecated Deprecated for removal as this PersistenceAdapter is no longer used and
|
||||
* replaced by the JDBCPersistenceAdapter.
|
||||
*
|
||||
* @org.apache.xbean.XBean
|
||||
*
|
||||
*/
|
||||
@Deprecated(forRemoval = true)
|
||||
public class JournalPersistenceAdapterFactory extends DataSourceServiceSupport implements PersistenceAdapterFactory {
|
||||
|
|
Loading…
Reference in New Issue