Fix typo in VariantContextBuilder

This commit is contained in:
Mark DePristo 2012-02-27 17:06:45 -05:00
parent 5f7ccdcc01
commit 100ddef930
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ public class VariantContextBuilder {
* @param parent Cannot be null
*/
public VariantContextBuilder(VariantContext parent) {
if ( parent == null ) throw new ReviewedStingException("BUG: VariantContext parent argument cannot be null in VariantContextBuilder")
if ( parent == null ) throw new ReviewedStingException("BUG: VariantContext parent argument cannot be null in VariantContextBuilder");
this.alleles = parent.alleles;
this.attributes = parent.getAttributes();
this.attributesCanBeModified = false;