Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
JAliEn
JAliEn
Commits
5b8cf510
Commit
5b8cf510
authored
Jun 06, 2018
by
Costin Grigoras
Browse files
Fix id parsing to Integer
parent
9b9c533e
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/alien/shell/commands/JAliEnCommandlistTransfer.java
View file @
5b8cf510
...
...
@@ -89,7 +89,7 @@ public class JAliEnCommandlistTransfer extends JAliEnBaseCommand {
this
.
status
=
(
String
)
options
.
valueOf
(
"status"
);
this
.
user
=
(
String
)
options
.
valueOf
(
"user"
);
if
(
options
.
has
(
"id"
))
this
.
id
=
new
Integer
((
String
)
options
.
valueOf
(
"id"
));
this
.
id
=
Integer
.
valueOf
((
String
)
options
.
valueOf
(
"id"
));
this
.
verbose
=
options
.
has
(
"verbose"
);
this
.
jdl
=
options
.
has
(
"jdl"
);
this
.
sort_desc
=
options
.
has
(
"desc"
);
...
...
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