blob: ac16f838f2fd4c3b18c34deb3d9b112e03d4a6b9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.jsp.core.tests.contenttypeidentifier.contentspecific;
import java.io.IOException;
import java.io.InputStream;
public class NullStream extends InputStream {
/* (non-Javadoc)
* @see java.io.InputStream#read()
*/
public int read() throws IOException {
return -1;
}
}