Skip to content
Snippets Groups Projects
Commit 21d0cae7 authored by Peter van 't Hof's avatar Peter van 't Hof
Browse files

Fix case class

parent 311e596b
No related branches found
No related tags found
No related merge requests found
...@@ -203,7 +203,7 @@ object BiopetCommandLineFunction extends Logging { ...@@ -203,7 +203,7 @@ object BiopetCommandLineFunction extends Logging {
private[core] val executableMd5Cache: mutable.Map[String, String] = mutable.Map() private[core] val executableMd5Cache: mutable.Map[String, String] = mutable.Map()
private[core] val executableCache: mutable.Map[String, String] = mutable.Map() private[core] val executableCache: mutable.Map[String, String] = mutable.Map()
private case class Executable(path: String, md5: Option[String]) case class Executable(path: String, md5: Option[String])
def preProcessExecutable(executable: String): Executable = { def preProcessExecutable(executable: String): Executable = {
if (!BiopetCommandLineFunction.executableMd5Cache.contains(executable)) { if (!BiopetCommandLineFunction.executableMd5Cache.contains(executable)) {
if (executable != null) { if (executable != null) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment