blob: 6c67cfe577d6ff71fd404ffed01314cce59d6922 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 BSI Business Systems Integration AG.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* BSI Business Systems Integration AG - initial API and implementation
******************************************************************************/
package org.eclipse.scout.releng.ant.pack200;
import java.io.IOException;
import java.io.OutputStream;
/** <h4> BufferedStream </h4>
*
* @author aho
* @since 1.1.0 (26.01.2011)
*
*/
public class BufferedStream extends OutputStream {
@Override
public void write(int b) throws IOException {
// TODO Auto-generated method stub
}
@Override
public void write(byte[] b, int off, int len) {
}
}