From b35df9a0f785b7a7971e4abd4caee5ea08cfad19 Mon Sep 17 00:00:00 2001 From: ebanks Date: Wed, 22 Jun 2011 15:30:52 +0000 Subject: [PATCH] Removing unnecessary String.format calls git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@6028 348d0f76-0448-11de-a6fe-93d51630548a --- java/src/org/broadinstitute/sting/utils/vcf/VCFUtils.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/java/src/org/broadinstitute/sting/utils/vcf/VCFUtils.java b/java/src/org/broadinstitute/sting/utils/vcf/VCFUtils.java index 7955fdb10..08de5bf56 100755 --- a/java/src/org/broadinstitute/sting/utils/vcf/VCFUtils.java +++ b/java/src/org/broadinstitute/sting/utils/vcf/VCFUtils.java @@ -168,10 +168,10 @@ public class VCFUtils { } } if ( ! compLine.getDescription().equals(compOther) ) - if ( logger != null ) logger.warn(String.format("Allowing unequal description fields through: keeping " + compOther + " excluding " + compLine)); + if ( logger != null ) logger.warn("Allowing unequal description fields through: keeping " + compOther + " excluding " + compLine); } else { // we are not equal, but we're not anything special either - if ( logger != null ) logger.warn(String.format("Ignoring header line already in map: this header line = " + line + " already present header = " + other)); + if ( logger != null ) logger.warn("Ignoring header line already in map: this header line = " + line + " already present header = " + other); } } else { map.put(key, line);