You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by mm...@apache.org on 2020/01/30 15:06:41 UTC

[syncope] branch master updated: fix checkstyle issues with line length

This is an automated email from the ASF dual-hosted git repository.

mmoayyed pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/syncope.git


The following commit(s) were added to refs/heads/master by this push:
     new 5a9bc11  fix checkstyle issues with line length
5a9bc11 is described below

commit 5a9bc115155ab96b2d50da4d85332f53ea2464a9
Author: Misagh Moayyed <mm...@gmail.com>
AuthorDate: Thu Jan 30 19:06:08 2020 +0400

    fix checkstyle issues with line length
---
 .../main/java/org/apache/syncope/core/logic/ReconciliationLogic.java   | 3 ++-
 .../java/org/apache/syncope/core/spring/security/AuthDataAccessor.java | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/core/idm/logic/src/main/java/org/apache/syncope/core/logic/ReconciliationLogic.java b/core/idm/logic/src/main/java/org/apache/syncope/core/logic/ReconciliationLogic.java
index 5c2f488..33713d1 100644
--- a/core/idm/logic/src/main/java/org/apache/syncope/core/logic/ReconciliationLogic.java
+++ b/core/idm/logic/src/main/java/org/apache/syncope/core/logic/ReconciliationLogic.java
@@ -354,7 +354,8 @@ public class ReconciliationLogic extends AbstractTransactionalLogic<EntityTO> {
             throw new NotFoundException("Realm " + pullTask.getDestinationRealm());
         }
         if (provision.getMapping().getConnObjectKeyItem().isEmpty()) {
-            throw new NotFoundException("ConnObjectKey cannot be determined for mapping " + provision.getMapping().getKey());
+            throw new NotFoundException(
+                "ConnObjectKey cannot be determined for mapping " + provision.getMapping().getKey());
         }
 
         SyncopeClientException sce = SyncopeClientException.build(ClientExceptionType.Reconciliation);
diff --git a/core/spring/src/main/java/org/apache/syncope/core/spring/security/AuthDataAccessor.java b/core/spring/src/main/java/org/apache/syncope/core/spring/security/AuthDataAccessor.java
index eb041ed..4d00c99 100644
--- a/core/spring/src/main/java/org/apache/syncope/core/spring/security/AuthDataAccessor.java
+++ b/core/spring/src/main/java/org/apache/syncope/core/spring/security/AuthDataAccessor.java
@@ -243,7 +243,8 @@ public class AuthDataAccessor {
                 }
                 Optional<String> connObjectKeyValue = mappingManager.getConnObjectKeyValue(user, provision.get());
                 if (connObjectKeyValue.isEmpty()) {
-                    throw new AccountNotFoundException("Unable to locate conn object key value for " + userType.getKey());
+                    throw new AccountNotFoundException(
+                        "Unable to locate conn object key value for " + userType.getKey());
                 }
                 connObjectKey = connObjectKeyValue.get();
                 Uid uid = connFactory.getConnector(resource).authenticate(connObjectKey, password, null);