mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Removed @Override tags for JDK 1.6
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@21489 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -616,7 +616,6 @@ public class AuditComponentTest extends TestCase
|
||||
{
|
||||
RunAsWork<Void> work = new RunAsWork<Void>()
|
||||
{
|
||||
@Override
|
||||
public Void doWork() throws Exception
|
||||
{
|
||||
auditService.clearAudit(applicationName);
|
||||
@@ -633,7 +632,6 @@ public class AuditComponentTest extends TestCase
|
||||
{
|
||||
RunAsWork<Void> work = new RunAsWork<Void>()
|
||||
{
|
||||
@Override
|
||||
public Void doWork() throws Exception
|
||||
{
|
||||
auditService.auditQuery(callback, parameters, maxResults);
|
||||
|
@@ -47,7 +47,6 @@ public class AuditServiceImpl implements AuditService
|
||||
* {@inheritDoc}
|
||||
* @since 3.4
|
||||
*/
|
||||
@Override
|
||||
public Set<String> getAuditApplications()
|
||||
{
|
||||
return auditComponent.getAuditApplications();
|
||||
|
@@ -164,7 +164,6 @@ public class AuditModelRegistryImpl extends AbstractPropertyBackedBean implement
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public Map<String, AuditApplication> getAuditApplications()
|
||||
{
|
||||
return getState(true).getAuditApplications();
|
||||
@@ -173,7 +172,6 @@ public class AuditModelRegistryImpl extends AbstractPropertyBackedBean implement
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public AuditApplication getAuditApplicationByKey(String key)
|
||||
{
|
||||
return getState(true).getAuditApplicationByKey(key);
|
||||
@@ -182,7 +180,6 @@ public class AuditModelRegistryImpl extends AbstractPropertyBackedBean implement
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public AuditApplication getAuditApplicationByName(String applicationName)
|
||||
{
|
||||
return getState(true).getAuditApplicationByName(applicationName);
|
||||
@@ -191,7 +188,6 @@ public class AuditModelRegistryImpl extends AbstractPropertyBackedBean implement
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public PathMapper getAuditPathMapper()
|
||||
{
|
||||
return getState(true).getAuditPathMapper();
|
||||
@@ -200,7 +196,6 @@ public class AuditModelRegistryImpl extends AbstractPropertyBackedBean implement
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public void loadAuditModels()
|
||||
{
|
||||
stop();
|
||||
@@ -210,7 +205,6 @@ public class AuditModelRegistryImpl extends AbstractPropertyBackedBean implement
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public boolean isAuditEnabled()
|
||||
{
|
||||
String value = getProperty(PROPERTY_AUDIT_ENABLED);
|
||||
|
Reference in New Issue
Block a user