blob: 44cda17e027040f5a36e9e1e897b8a267cb7ef4d [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2010, 2020 Oracle and others
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* Konstantin Komissarchik - initial implementation and ongoing maintenance
******************************************************************************/
package org.eclipse.jst.common.project.facet.core.libprov;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
/**
* This operation implementation can be used in situations when an install or an uninstall
* operation doesn't actually have do do anything.
*
* @author <a href="mailto:konstantin.komissarchik@oracle.com">Konstantin Komissarchik</a>
* @since 1.4
*/
public final class NoOpLibraryProviderOperation
extends LibraryProviderOperation
{
public void execute( final LibraryProviderOperationConfig config,
final IProgressMonitor monitor )
throws CoreException
{
// The operation is a no-op.
}
}