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 2019/12/18 08:53:32 UTC

[syncope] branch master updated: Small fix

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

ilgrosso 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 817eb95  Small fix
817eb95 is described below

commit 817eb95d310877d66d76a5274ff31952c3e674e0
Author: Francesco Chicchiriccò <il...@apache.org>
AuthorDate: Wed Dec 18 09:49:07 2019 +0100

    Small fix
---
 .../syncope/client/console/pages/pages/Dashboard_fr_CA.properties     | 2 +-
 .../apache/syncope/core/persistence/jpa/dao/JPAPlainSchemaDAO.java    | 4 ----
 2 files changed, 1 insertion(+), 5 deletions(-)

diff --git a/client/idrepo/console/src/main/resources/org/apache/syncope/client/console/pages/pages/Dashboard_fr_CA.properties b/client/idrepo/console/src/main/resources/org/apache/syncope/client/console/pages/pages/Dashboard_fr_CA.properties
index 35b2865..17fd01b 100644
--- a/client/idrepo/console/src/main/resources/org/apache/syncope/client/console/pages/pages/Dashboard_fr_CA.properties
+++ b/client/idrepo/console/src/main/resources/org/apache/syncope/client/console/pages/pages/Dashboard_fr_CA.properties
@@ -16,4 +16,4 @@
 # under the License.
 overview=R�sum�
 control=Contr�le
-accessTokens=Acc�der aux jetons
+accessTokens=Jetons d'acc�s
diff --git a/core/persistence-jpa/src/main/java/org/apache/syncope/core/persistence/jpa/dao/JPAPlainSchemaDAO.java b/core/persistence-jpa/src/main/java/org/apache/syncope/core/persistence/jpa/dao/JPAPlainSchemaDAO.java
index 8bb728b..46f98ad 100644
--- a/core/persistence-jpa/src/main/java/org/apache/syncope/core/persistence/jpa/dao/JPAPlainSchemaDAO.java
+++ b/core/persistence-jpa/src/main/java/org/apache/syncope/core/persistence/jpa/dao/JPAPlainSchemaDAO.java
@@ -33,7 +33,6 @@ import org.apache.syncope.core.persistence.api.entity.Implementation;
 import org.apache.syncope.core.persistence.api.entity.PlainAttr;
 import org.apache.syncope.core.persistence.api.entity.PlainSchema;
 import org.apache.syncope.core.persistence.api.entity.anyobject.APlainAttr;
-import org.apache.syncope.core.persistence.api.entity.conf.CPlainAttr;
 import org.apache.syncope.core.persistence.api.entity.group.GPlainAttr;
 import org.apache.syncope.core.persistence.jpa.entity.JPAPlainSchema;
 import org.apache.syncope.core.persistence.jpa.entity.anyobject.JPAAPlainAttr;
@@ -162,9 +161,6 @@ public class JPAPlainSchemaDAO extends AbstractDAO<PlainSchema> implements Plain
         if (APlainAttr.class.isAssignableFrom(plainAttrClass)) {
             return JPAAPlainAttr.TABLE;
         }
-        if (CPlainAttr.class.isAssignableFrom(plainAttrClass)) {
-            return JPAAPlainAttr.TABLE;
-        }
         return JPAUPlainAttr.TABLE;
     }
 }