This is an automated email from the git hooks/post-receive script. New change to branch feature/7739_syncrho_ref_en_serveur_distant in repository observe. See https://gitlab.nuiton.org/codelutin/observe.git from d98552c Ajoute le schema et les données referentiel à la sauvegarde de la base lors de la synchro referentiels new 17974bd Ajoute l'entete de licence manquant new 3645334 Renverse le test d'assignabilité (la superclass doit etre placée à gauche) The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit 36453343bfe026120e7e5fd743aaa9124b58453e Author: Samuel Maisonneuve <maisonneuve@codelutin.com> Date: Fri Aug 19 14:48:17 2016 +0200 Renverse le test d'assignabilité (la superclass doit etre placée à gauche) refs #7739 commit 17974bd41c1d16263fa5e347fac803b39ed4c89c Author: Samuel Maisonneuve <maisonneuve@codelutin.com> Date: Fri Aug 19 14:47:49 2016 +0200 Ajoute l'entete de licence manquant refs #7739 Summary of changes: .../web/injector/ImmutableSetInjector.java | 2 +- .../dto/referential/ReferentialMultimap.java | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+), 1 deletion(-) -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
This is an automated email from the git hooks/post-receive script. New commit to branch feature/7739_syncrho_ref_en_serveur_distant in repository observe. See https://gitlab.nuiton.org/codelutin/observe.git commit 17974bd41c1d16263fa5e347fac803b39ed4c89c Author: Samuel Maisonneuve <maisonneuve@codelutin.com> Date: Fri Aug 19 14:47:49 2016 +0200 Ajoute l'entete de licence manquant refs #7739 --- .../dto/referential/ReferentialMultimap.java | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/observe-services-model/src/main/java/fr/ird/observe/services/dto/referential/ReferentialMultimap.java b/observe-services-model/src/main/java/fr/ird/observe/services/dto/referential/ReferentialMultimap.java index 2dddef6..1d1fb78 100644 --- a/observe-services-model/src/main/java/fr/ird/observe/services/dto/referential/ReferentialMultimap.java +++ b/observe-services-model/src/main/java/fr/ird/observe/services/dto/referential/ReferentialMultimap.java @@ -1,5 +1,27 @@ package fr.ird.observe.services.dto.referential; +/* + * #%L + * ObServe :: Services model + * %% + * Copyright (C) 2008 - 2015 IRD, Codelutin, Tony Chemit + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/gpl-3.0.html>. + * #L% + */ + import com.google.common.collect.ImmutableMap; import com.google.common.collect.ImmutableSet; import com.google.common.collect.ImmutableSetMultimap; -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
This is an automated email from the git hooks/post-receive script. New commit to branch feature/7739_syncrho_ref_en_serveur_distant in repository observe. See https://gitlab.nuiton.org/codelutin/observe.git commit 36453343bfe026120e7e5fd743aaa9124b58453e Author: Samuel Maisonneuve <maisonneuve@codelutin.com> Date: Fri Aug 19 14:48:17 2016 +0200 Renverse le test d'assignabilité (la superclass doit etre placée à gauche) refs #7739 --- .../fr/ird/observe/application/web/injector/ImmutableSetInjector.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/observe-application-web/src/main/java/fr/ird/observe/application/web/injector/ImmutableSetInjector.java b/observe-application-web/src/main/java/fr/ird/observe/application/web/injector/ImmutableSetInjector.java index a5b94e8..636bead 100644 --- a/observe-application-web/src/main/java/fr/ird/observe/application/web/injector/ImmutableSetInjector.java +++ b/observe-application-web/src/main/java/fr/ird/observe/application/web/injector/ImmutableSetInjector.java @@ -54,7 +54,7 @@ public class ImmutableSetInjector implements ExecutorParametersInjectorHandler.I ImmutableSet result = null; - if (type.isAssignableFrom(ImmutableSet.class)) { + if (ImmutableSet.class.isAssignableFrom(type)) { // Type des objets contenu dans le set // Type[] actualTypeArguments = ((ParameterizedType) generic).getActualTypeArguments(); // Type subType = actualTypeArguments[0]; -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
participants (1)
-
codelutin.com scm