blob: 2b286e642de3ef4269d985f7c3e0f12956d8a34f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 Oracle.
* 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:
* Oracle - initial API and implementation
*******************************************************************************/
package org.eclipse.jpt.core.internal.facet;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.jst.common.project.facet.core.libprov.LibraryProviderOperation;
import org.eclipse.jst.common.project.facet.core.libprov.LibraryProviderOperationConfig;
public class LegacyJpaLibraryProviderInstallOperation
extends LibraryProviderOperation
{
@Override
public void execute(
LibraryProviderOperationConfig config, IProgressMonitor monitor)
throws CoreException {
// no op - nothing to uninstall
}
}