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

Fix method

parent a0364182
No related branches found
No related tags found
No related merge requests found
......@@ -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")
......
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