Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
IA2
GMS
Commits
b115bb82
Commit
b115bb82
authored
Nov 22, 2019
by
Sonia Zorba
Browse files
NPE bugfix
parent
9076ef3c
Changes
1
Hide whitespace changes
Inline
Side-by-side
gms/src/main/java/it/inaf/ia2/gms/controller/JWTWebServiceController.java
View file @
b115bb82
...
...
@@ -73,6 +73,10 @@ public class JWTWebServiceController {
private
String
getGroupCompleteName
(
GroupEntity
group
,
Map
<
String
,
String
>
idNameMap
)
{
if
(
"ROOT"
.
equals
(
group
.
getId
()))
{
return
group
.
getName
();
}
List
<
String
>
names
=
new
ArrayList
<>();
for
(
String
groupId
:
group
.
getPath
().
split
(
"\\."
))
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment