This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository pollen. See http://git.chorem.org/pollen.git commit a24ff9d86f804a5ee2862b07b45b618ca32afae8 Author: Adrien Garandel <a.garandel@dralagen.fr> Date: Fri Jun 6 12:22:16 2014 +0200 fix type error --- .../src/main/java/org/chorem/pollen/rest/api/v1/VoterListApi.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pollen-rest-api/src/main/java/org/chorem/pollen/rest/api/v1/VoterListApi.java b/pollen-rest-api/src/main/java/org/chorem/pollen/rest/api/v1/VoterListApi.java index 7fd66cd..d3242a4 100644 --- a/pollen-rest-api/src/main/java/org/chorem/pollen/rest/api/v1/VoterListApi.java +++ b/pollen-rest-api/src/main/java/org/chorem/pollen/rest/api/v1/VoterListApi.java @@ -47,10 +47,10 @@ import java.util.Set; */ public class VoterListApi extends WebMotionController { - public VoterListBean importFavoriteList(VoterListService voterListService, PollenEntityId<Poll> pollId, PollenEntityId<FavoriteList> favoriteListId) { + public PollenEntityRef<VoterList> importFavoriteList(VoterListService voterListService, PollenEntityId<Poll> pollId, PollenEntityId<FavoriteList> favoriteListId) { - VoterListBean importVoterList = voterListService.importFavoriteList(pollId.getEntityId(), favoriteListId.getEntityId()); - return importVoterList; + PollenEntityRef<VoterList> principalRef = voterListService.importFavoriteList(pollId.getEntityId(), favoriteListId.getEntityId()); + return principalRef; } -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.
participants (1)
-
chorem.org scm