Fixed bad contract in ReadTransformer

This commit is contained in:
Mark DePristo 2012-08-31 13:40:33 -04:00
parent cf91d894e4
commit e028901d54
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ abstract public class ReadTransformer {
* @param engine the engine, for initializing values
* @param walker the walker we intend to run
*/
@Requires({"initialized == false", "engine != null", "walker == null"})
@Requires({"initialized == false", "engine != null", "walker != null"})
@Ensures("initialized == true")
public final void initialize(final ApplicationTime overrideTime, final GenomeAnalysisEngine engine, final Walker walker) {
if ( engine == null ) throw new IllegalArgumentException("engine cannot be null");