Format fixing during investigation of ALF-20086

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@55727 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Derek Hulley
2013-09-20 10:26:24 +00:00
parent 989c84b282
commit 78697c323d
2 changed files with 110 additions and 106 deletions

View File

@@ -563,7 +563,6 @@ public abstract class AbstractPatch implements Patch, ApplicationEventPublisher
private String apply(boolean async)
{
if (!async)
{
// Do we bug out of patch execution
@@ -735,14 +734,16 @@ public abstract class AbstractPatch implements Patch, ApplicationEventPublisher
* Should the patch be deferred? And not run at bootstrap.
* @param deferred
*/
public void setDeferred(boolean deferred) {
public void setDeferred(boolean deferred)
{
this.deferred = deferred;
}
/*
*
*/
public boolean isDeferred() {
public boolean isDeferred()
{
return deferred;
}

View File

@@ -48,7 +48,6 @@ import org.springframework.extensions.surf.util.I18NUtil;
* The first use-case is when there is a child called cm:shared and we want to patch a folder with app:shared
*
* @author mrogers
*
*/
public class SharedFolderPatch extends GenericBootstrapPatch
{
@@ -180,19 +179,23 @@ public class SharedFolderPatch extends GenericBootstrapPatch
return super.applyInternal();
}
public void setRenamePath(String renamePath) {
public void setRenamePath(String renamePath)
{
this.renamePath = renamePath;
}
public String getRenamePath() {
public String getRenamePath()
{
return renamePath;
}
public void setJobLockService(JobLockService jobLockService) {
public void setJobLockService(JobLockService jobLockService)
{
this.jobLockService = jobLockService;
}
public JobLockService getJobLockService() {
public JobLockService getJobLockService()
{
return jobLockService;
}