cemenzel - 2007-02-09

Logged In: YES
user_id=1689492
Originator: NO

I have created a patch that is very simple, but works within EclEmma on JDK1.6:
$ diff Logger.java.bak Logger.java
73,74c73,74
< if ((out == null) || out.checkError ())
< throw new IllegalArgumentException ("null or corrupt input: out");
---
> if ((out == null))// || out.checkError ())
> throw new IllegalArgumentException ("null: out");

Applying this patch and then rebuilding emma.jar seems to work fine.