Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
project
des
Commits
0e82d12f
Commit
0e82d12f
authored
Apr 14, 2022
by
Jesper Zedlitz
Browse files
beim OR-Verknüpfen muss man explizit auf null testen
parent
3d5e6e37
Pipeline
#1616
failed with stages
in 3 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
grails-app/domain/net/genealogy/des/Entry.groovy
View file @
0e82d12f
...
...
@@ -109,7 +109,7 @@ class Entry {
if
(
nr
==
12
)
value12
=
value
if
(
nr
==
13
)
value13
=
value
if
(
nr
==
14
)
value14
=
value
if
(
moreValues
|
nr
>
14
)
{
if
(
moreValues
!=
null
|
nr
>
14
)
{
def
json
=
moreValues
?
new
JsonSlurper
().
parseText
(
moreValues
)
:
[:]
json
[
'value'
+
nr
]
=
value
moreValues
=
JsonOutput
.
toJson
(
json
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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