From 57cf8d950a150a4faf05456e56579986c2f91983 Mon Sep 17 00:00:00 2001 From: Peter van 't Hof <p.j.van_t_hof@lumc.nl> Date: Sat, 1 Aug 2015 13:23:28 +0200 Subject: [PATCH] Fix method --- .../lumc/sasc/biopet/core/workaround/BiopetQCommandLine.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/core/workaround/BiopetQCommandLine.scala b/public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/core/workaround/BiopetQCommandLine.scala index e7659f044..2092ea732 100644 --- a/public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/core/workaround/BiopetQCommandLine.scala +++ b/public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/core/workaround/BiopetQCommandLine.scala @@ -300,7 +300,7 @@ class BiopetQCommandLine extends CommandLineProgram with Logging { } private def getQueueVersion: String = { - val stingResources: ResourceBundle = TextFormattingUtils.loadResourceBundle("StingText") + val stingResources: ResourceBundle = TextFormattingUtils.loadResourceBundle("StingText", this.getClass) if (stingResources.containsKey("org.broadinstitute.sting.queue.QueueVersion.version")) { stingResources.getString("org.broadinstitute.sting.queue.QueueVersion.version") @@ -310,7 +310,7 @@ class BiopetQCommandLine extends CommandLineProgram with Logging { } private def getBuildTimestamp: String = { - val stingResources: ResourceBundle = TextFormattingUtils.loadResourceBundle("StingText") + val stingResources: ResourceBundle = TextFormattingUtils.loadResourceBundle("StingText", this.getClass) if (stingResources.containsKey("build.timestamp")) { stingResources.getString("build.timestamp") -- GitLab