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:
parent
20ffe484bc
commit
732aa32758
|
|
@ -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.
|
||||
*
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in New Issue