blob: 03ccacdf65fd4b28980cc8c9a578a54eba5147b0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2013 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ant.internal.core.ant;
import org.apache.tools.ant.BuildException;
import org.apache.tools.ant.input.InputHandler;
import org.apache.tools.ant.input.InputRequest;
/**
* A input handler that does nothing with input requests Used to ensure we do not block while retrieving targets from an Ant buildfile that has an
* input task in the top level implicit target
*/
public class NullInputHandler implements InputHandler {
public NullInputHandler() {
}
@Override
public void handleInput(InputRequest request) throws BuildException {
// do nothing
}
}