You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by il...@apache.org on 2018/11/10 06:07:39 UTC

[syncope] branch 2_1_X updated: Ouch, checkstyle...

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

ilgrosso pushed a commit to branch 2_1_X
in repository https://gitbox.apache.org/repos/asf/syncope.git


The following commit(s) were added to refs/heads/2_1_X by this push:
     new 0c97727  Ouch, checkstyle...
0c97727 is described below

commit 0c9772723c94bfb8a8df40b45a8c97567c3901f3
Author: Francesco Chicchiriccò <il...@apache.org>
AuthorDate: Sat Nov 10 07:07:12 2018 +0100

    Ouch, checkstyle...
---
 .../apache/syncope/core/persistence/jpa/dao/AbstractAnySearchDAO.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/persistence-jpa/src/main/java/org/apache/syncope/core/persistence/jpa/dao/AbstractAnySearchDAO.java b/core/persistence-jpa/src/main/java/org/apache/syncope/core/persistence/jpa/dao/AbstractAnySearchDAO.java
index 6800dbe..0dbc686 100644
--- a/core/persistence-jpa/src/main/java/org/apache/syncope/core/persistence/jpa/dao/AbstractAnySearchDAO.java
+++ b/core/persistence-jpa/src/main/java/org/apache/syncope/core/persistence/jpa/dao/AbstractAnySearchDAO.java
@@ -356,7 +356,7 @@ public abstract class AbstractAnySearchDAO extends AbstractDAO<Any<?>> implement
         } else {
             effectiveOrderBy = orderBy.stream().
                     filter(clause -> !ArrayUtils.contains(ORDER_BY_NOT_ALLOWED, clause.getField())).
-                    collect(Collectors.toList());;
+                    collect(Collectors.toList());
         }
 
         return doSearch(adminRealms, cond, page, itemsPerPage, effectiveOrderBy, kind);