blob: 56d69cf46f8be59a435bc25099fc1283b02fd202 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2009 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:
* David Knibb initial implementation
* Matthew Webster Eclipse 3.2 changes
*******************************************************************************/
package org.eclipse.equinox.weaving.hooks;
import org.eclipse.osgi.storage.bundlefile.BundleFile;
public class BaseWeavingBundleFile extends WeavingBundleFile {
public BaseWeavingBundleFile(final BundleAdaptorProvider adaptorProvider,
final BundleFile bundleFile) {
super(adaptorProvider, bundleFile);
}
}