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:
Christopher L. Shannon 2023-03-15 07:35:03 -04:00 committed by GitHub
parent 5fff8500b6
commit 2e0eca7189
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 12 deletions

View File

@ -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 {

View File

@ -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 {