Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Mirrors
biopet.biopet
Commits
fd46bc2a
Commit
fd46bc2a
authored
Sep 16, 2015
by
Peter van 't Hof
Browse files
Remove $ from class
parent
ae404243
Changes
1
Hide whitespace changes
Inline
Side-by-side
public/biopet-core/src/main/scala/nl/lumc/sasc/biopet/core/ToolCommandFuntion.scala
View file @
fd46bc2a
...
...
@@ -11,7 +11,7 @@ trait ToolCommandFuntion extends BiopetJavaCommandLineFunction {
override
def
getVersion
=
Some
(
"Biopet "
+
FullVersion
)
override
def
freezeFieldValues
()
:
Unit
=
{
javaMainClass
=
toolObject
.
getClass
.
getName
.
split
(
"$"
).
head
javaMainClass
=
toolObject
.
getClass
.
getName
.
takeWhile
(
_
!=
'$'
)
super
.
freezeFieldValues
()
}
}
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