branch develop updated (2d2e367 -> 60eca73)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository bow. See http://git.chorem.org/bow.git from 2d2e367 not use Collections4 new 60eca73 fixes bug (NPE) when we try to delete The 1 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 60eca73f75549e12bf71adcb609d6128ef7b2765 Author: Benjamin POUSSIN <poussin@codelutin.com> Date: Thu Aug 6 23:33:38 2015 +0200 fixes bug (NPE) when we try to delete Summary of changes: bow-ui/src/main/java/org/chorem/bow/action/group/GroupEditAction.java | 4 ++-- .../java/org/chorem/bow/action/sharedUser/SharedUserEditAction.java | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository bow. See http://git.chorem.org/bow.git commit 60eca73f75549e12bf71adcb609d6128ef7b2765 Author: Benjamin POUSSIN <poussin@codelutin.com> Date: Thu Aug 6 23:33:38 2015 +0200 fixes bug (NPE) when we try to delete --- bow-ui/src/main/java/org/chorem/bow/action/group/GroupEditAction.java | 4 ++-- .../java/org/chorem/bow/action/sharedUser/SharedUserEditAction.java | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bow-ui/src/main/java/org/chorem/bow/action/group/GroupEditAction.java b/bow-ui/src/main/java/org/chorem/bow/action/group/GroupEditAction.java index cb0e787..f348ba6 100644 --- a/bow-ui/src/main/java/org/chorem/bow/action/group/GroupEditAction.java +++ b/bow-ui/src/main/java/org/chorem/bow/action/group/GroupEditAction.java @@ -122,7 +122,7 @@ public class GroupEditAction extends BowBaseAction { String result = SUCCESS; try { - String groupName = group.getName(); + String groupName = getGroup().getName(); BowUser user = getBowUser(); BowProxy proxy = getBowProxy(); @@ -221,7 +221,7 @@ public class GroupEditAction extends BowBaseAction { String result = SUCCESS; try { - String groupName = group.getName(); + String groupName = getGroup().getName(); BowProxy proxy = getBowProxy(); diff --git a/bow-ui/src/main/java/org/chorem/bow/action/sharedUser/SharedUserEditAction.java b/bow-ui/src/main/java/org/chorem/bow/action/sharedUser/SharedUserEditAction.java index 476be0d..fc2c89d 100644 --- a/bow-ui/src/main/java/org/chorem/bow/action/sharedUser/SharedUserEditAction.java +++ b/bow-ui/src/main/java/org/chorem/bow/action/sharedUser/SharedUserEditAction.java @@ -124,7 +124,7 @@ public class SharedUserEditAction extends BowBaseAction { String result = SUCCESS; try { - String userLogin = sharedUser.getLogin(); + String userLogin = getSharedUser().getLogin(); BowProxy proxy = getBowProxy(); -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.
participants (1)
-
chorem.org scm