Removing printf's used for debugging -- they have served their purpose.

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@5906 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
droazen 2011-05-31 14:06:37 +00:00
parent 0aef5c0074
commit c50d290133
1 changed files with 2 additions and 2 deletions

View File

@ -188,8 +188,8 @@ public class GenomeAnalysisEngine {
private static Random randomGenerator = new Random(GATK_RANDOM_SEED);
public static Random getRandomGenerator() { return randomGenerator; }
public static void resetRandomGenerator() { System.out.printf("Reset random seed to %d\n", GATK_RANDOM_SEED); randomGenerator.setSeed(GATK_RANDOM_SEED); }
public static void resetRandomGenerator(long seed) { System.out.printf("Reset random seed to %d\n", seed); randomGenerator.setSeed(seed); }
public static void resetRandomGenerator() { randomGenerator.setSeed(GATK_RANDOM_SEED); }
public static void resetRandomGenerator(long seed) { randomGenerator.setSeed(seed); }
/**
* Actually run the GATK with the specified walker.
*