Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
reg-app
Regapp
Commits
333cd83d
Commit
333cd83d
authored
Apr 15, 2016
by
michael.simon
Browse files
Don't audit field change from null to null
parent
4fc92030
Changes
1
Hide whitespace changes
Inline
Side-by-side
bwreg-service/src/main/java/edu/kit/scc/webreg/service/impl/UserUpdater.java
View file @
333cd83d
...
...
@@ -453,6 +453,11 @@ public class UserUpdater implements Serializable {
return
false
;
}
if
(
actualValue
==
null
&&
value
==
null
)
{
// Value stayed null
return
false
;
}
if
(
actualValue
==
null
)
{
s
=
"null"
;
action
=
"SET FIELD"
;
...
...
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