Repository: syncope
Updated Branches:
  refs/heads/2_0_X 69afe1a09 -> b8aa79201
  refs/heads/master f3795a8d5 -> b766580a6


Fixing checkstyle


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/b8aa7920
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/b8aa7920
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/b8aa7920

Branch: refs/heads/2_0_X
Commit: b8aa792013b5e27eae978c0e9bf208f5554ed7d3
Parents: 69afe1a
Author: Francesco Chicchiriccò <ilgro...@apache.org>
Authored: Sun Feb 12 08:07:20 2017 +0100
Committer: Francesco Chicchiriccò <ilgro...@apache.org>
Committed: Sun Feb 12 08:07:20 2017 +0100

----------------------------------------------------------------------
 .../core/provisioning/java/pushpull/PushJobDelegate.java  | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/b8aa7920/core/provisioning-java/src/main/java/org/apache/syncope/core/provisioning/java/pushpull/PushJobDelegate.java
----------------------------------------------------------------------
diff --git 
a/core/provisioning-java/src/main/java/org/apache/syncope/core/provisioning/java/pushpull/PushJobDelegate.java
 
b/core/provisioning-java/src/main/java/org/apache/syncope/core/provisioning/java/pushpull/PushJobDelegate.java
index be6ffe6..8e18ab5 100644
--- 
a/core/provisioning-java/src/main/java/org/apache/syncope/core/provisioning/java/pushpull/PushJobDelegate.java
+++ 
b/core/provisioning-java/src/main/java/org/apache/syncope/core/provisioning/java/pushpull/PushJobDelegate.java
@@ -146,9 +146,8 @@ public class PushJobDelegate extends 
AbstractProvisioningJobDelegate<PushTask> {
 
         // First OrgUnits...
         if (pushTask.getResource().getOrgUnit() != null) {
-            SyncopePushResultHandler rhandler =
-                    (SyncopePushResultHandler) 
ApplicationContextProvider.getBeanFactory().
-                            createBean(RealmPushResultHandlerImpl.class, 
AbstractBeanDefinition.AUTOWIRE_BY_NAME, false);
+            SyncopePushResultHandler rhandler = (SyncopePushResultHandler) 
ApplicationContextProvider.getBeanFactory().
+                    createBean(RealmPushResultHandlerImpl.class, 
AbstractBeanDefinition.AUTOWIRE_BY_NAME, false);
             rhandler.setProfile(profile);
 
             for (Realm realm : realmDAO.findAll()) {
@@ -165,9 +164,8 @@ public class PushJobDelegate extends 
AbstractProvisioningJobDelegate<PushTask> {
         }
 
         // ...then provisions for any types
-        AnyObjectPushResultHandler ahandler =
-                (AnyObjectPushResultHandler) 
ApplicationContextProvider.getBeanFactory().
-                        createBean(AnyObjectPushResultHandlerImpl.class, 
AbstractBeanDefinition.AUTOWIRE_BY_NAME, false);
+        AnyObjectPushResultHandler ahandler = (AnyObjectPushResultHandler) 
ApplicationContextProvider.getBeanFactory().
+                createBean(AnyObjectPushResultHandlerImpl.class, 
AbstractBeanDefinition.AUTOWIRE_BY_NAME, false);
         ahandler.setProfile(profile);
 
         UserPushResultHandler uhandler =

Reply via email to