Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Public group
pro-sd-ump
Commits
4441c5d7
Commit
4441c5d7
authored
Feb 25, 2022
by
cheremnov
Browse files
#143
fix PMD
parent
b37cde2c
Changes
1
Hide whitespace changes
Inline
Side-by-side
ump/ump-common-lib/src/main/java/com/asvoip/ump/common/converter/impl/AbstractNamedIdentifiableConverter.java
View file @
4441c5d7
...
...
@@ -10,7 +10,7 @@ public abstract class AbstractNamedIdentifiableConverter
@Override
public
O
convert
(
I
input
)
{
final
O
output
=
super
.
convert
(
input
);
output
.
setName
(
input
.
getName
()
!
=
null
?
input
.
getName
().
trim
()
:
null
);
output
.
setName
(
input
.
getName
()
=
=
null
?
null
:
input
.
getName
().
trim
());
output
.
setDescription
(
input
.
getDescription
());
return
output
;
}
...
...
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