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:
parent
b7a1beff3c
commit
b35df9a0f7
|
|
@ -168,10 +168,10 @@ public class VCFUtils {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if ( ! compLine.getDescription().equals(compOther) )
|
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 {
|
} else {
|
||||||
// we are not equal, but we're not anything special either
|
// 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 {
|
} else {
|
||||||
map.put(key, line);
|
map.put(key, line);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue