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
4a83920e
Commit
4a83920e
authored
Dec 01, 2014
by
Peter van 't Hof
Browse files
Fix dirty build warning
parent
5750c33e
Changes
1
Hide whitespace changes
Inline
Side-by-side
public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/core/BiopetExecutable.scala
View file @
4a83920e
...
...
@@ -21,6 +21,7 @@ trait BiopetExecutable extends Logging {
* @param args the command line arguments
*/
def
main
(
args
:
Array
[
String
])
:
Unit
=
{
checkDirtyBuild
(
logger
)
def
toBulletedList
(
m
:
List
[
MainCommand
],
kind
:
String
=
""
,
bullet
:
String
=
"-"
)
=
"Available %s(s):\n "
.
format
(
kind
)
+
bullet
+
" "
+
m
.
map
(
x
=>
x
.
commandName
).
sorted
.
mkString
(
"\n "
+
bullet
+
" "
)
...
...
@@ -113,7 +114,6 @@ trait BiopetExecutable extends Logging {
logger
.
warn
(
"**********************************************************"
)
}
}
checkDirtyBuild
(
logger
)
}
object
BiopetExecutable
{
...
...
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