Skip to content

Commit

Permalink
Release 2.4.1 (PR #402)
Browse files Browse the repository at this point in the history
  • Loading branch information
axlbonnet authored Feb 1, 2023
2 parents 714a1a3 + 497e4ac commit 820a51b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ knowledge of the CeCILL-B license and that you accept its terms.
<properties>
<!-- project version. Only to change it here (and in CoreConstants.java
Follow this practice : https://maven.apache.org/maven-ci-friendly.html-->
<revision>2.4</revision>
<revision>2.4.1</revision>
<changelist></changelist>
<sha1/>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
public class CoreConstants implements IsSerializable {


public static final String VERSION = "v2.4";
public static final String VERSION = "v2.4.1";
// Configuration Labels
public static final String VO_NAME = "vo.name";
public static final String VO_ROOT = "vo.root";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -697,6 +697,9 @@ public List<Group> getGroups() throws BusinessException {
}

public Group getGroup(String groupName) throws BusinessException {
if (groupName == null) {
return null;
}
return this.getGroups().stream()
.filter(g -> groupName.equals(g.getName()))
.findAny().orElse(null);
Expand Down

0 comments on commit 820a51b

Please sign in to comment.