Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
minerva
core
Commits
01cd6048
Commit
01cd6048
authored
Jun 11, 2021
by
Piotr Gawron
Browse files
those fields are unused
parent
b70a1fe3
Changes
1
Hide whitespace changes
Inline
Side-by-side
rest-api/src/main/java/lcsb/mapviewer/api/projects/overlays/OverlayRestImpl.java
View file @
01cd6048
...
...
@@ -79,18 +79,15 @@ public class OverlayRestImpl extends BaseRestImpl {
result
.
put
(
"order"
,
overlay
.
getOrderIndex
());
result
.
put
(
"description"
,
overlay
.
getDescription
());
result
.
put
(
"publicOverlay"
,
overlay
.
isPublic
());
result
.
put
(
"defaultOverlay"
,
false
);
result
.
put
(
"type"
,
overlay
.
getColorSchemaType
());
result
.
put
(
"genomeType"
,
overlay
.
getGenomeType
());
result
.
put
(
"genomeVersion"
,
overlay
.
getGenomeVersion
());
result
.
put
(
"googleLicenseConsent"
,
overlay
.
isGoogleLicenseConsent
());
result
.
put
(
"images"
,
new
ArrayList
<>());
if
(
overlay
.
getCreator
()
!=
null
)
{
result
.
put
(
"creator"
,
overlay
.
getCreator
().
getLogin
());
}
result
.
put
(
"inputDataAvailable"
,
overlay
.
getInputData
()
!=
null
);
return
result
;
}
...
...
Write
Preview
Markdown
is supported
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