@NotNull
public OutputStream openOut( @NotNull @NonNls final String id ) {
byte[] stored = serialized.get( id );
if ( stored != null ) {
throw new StillContainedException( id );
}
return new ByteArrayOutputStream() {
@Override
public void close() throws IOException {