Restoring UninstantiableWalker, as it is not going to be possible to run ant test; ant gatkdocs without ant clean in between
This commit is contained in:
parent
acda8eb09c
commit
44bd9ae703
|
|
@ -57,17 +57,17 @@ public class WalkerManagerUnitTest {
|
||||||
walkerManager.createByName("Missing");
|
walkerManager.createByName("Missing");
|
||||||
}
|
}
|
||||||
|
|
||||||
// @Test(expectedExceptions=DynamicClassResolutionException.class)
|
@Test(expectedExceptions=DynamicClassResolutionException.class)
|
||||||
// public void testUninstantiableWalker() {
|
public void testUninstantiableWalker() {
|
||||||
// walkerManager.createByName("Uninstantiable");
|
walkerManager.createByName("Uninstantiable");
|
||||||
// }
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//@Hidden
|
@Hidden
|
||||||
//@Requires(value={})
|
@Requires(value={})
|
||||||
//class UninstantiableWalker extends Walker<Integer,Long> {
|
class UninstantiableWalker extends Walker<Integer,Long> {
|
||||||
// // Private constructor will generate uninstantiable message
|
// Private constructor will generate uninstantiable message
|
||||||
// private UninstantiableWalker() {}
|
private UninstantiableWalker() {}
|
||||||
// public Long reduceInit() { return 0L; }
|
public Long reduceInit() { return 0L; }
|
||||||
// public Long reduce(Integer value, Long accum) { return 0L; }
|
public Long reduce(Integer value, Long accum) { return 0L; }
|
||||||
//}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue