Every Sting app from now on will be forced into the US English locale.

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@4385 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
hanna 2010-09-29 21:55:21 +00:00
parent 20ffe484bc
commit 732aa32758
2 changed files with 8 additions and 8 deletions

View File

@ -80,6 +80,14 @@ public abstract class CommandLineProgram {
private static String patternString = "%-5p %d{HH:mm:ss,SSS} %C{1} - %m %n";
private static String debugPatternString = "%n[level] %p%n[date]\t\t %d{dd MMM yyyy HH:mm:ss,SSS} %n[class]\t\t %C %n[location]\t %l %n[line number]\t %L %n[message]\t %m %n";
/**
* The very first thing that any Sting application does is forces the JVM locale into US English, so that we don't have
* to think about number formatting issues.
*/
{
forceJVMLocaleToUSEnglish();
}
/**
* Allows a given application to return a brief description of itself.
*

View File

@ -75,14 +75,6 @@ public class CommandLineGATK extends CommandLineExecutable {
return argCollection;
}
/**
* The very first thing that the GATK does is forces the JVM locale into US English, so that we don't have
* to think about number formatting issues.
*/
{
forceJVMLocaleToUSEnglish();
}
/**
* Required main method implementation.
*/