Removing unnecessary String.format calls

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@6028 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
ebanks 2011-06-22 15:30:52 +00:00
parent b7a1beff3c
commit b35df9a0f7
1 changed files with 2 additions and 2 deletions

View File

@ -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);