blob: 993f353a0795691fb50f9161c3bc76bbdfe15f86 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2020 Christian Pontesegger 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/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Christian Pontesegger - initial API and implementation
*******************************************************************************/
package org.eclipse.skills.model;
import org.eclipse.skills.model.impl.MDependency;
public class DummyDependency extends MDependency {
@Override
public void activate() {
}
@Override
public void deactivate() {
}
}