1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-21 21:52:10 +02:00

Remove WorkingCopyInfo class (internal, unused and deprecated)

Change-Id: If883af97139c4b00f93a99c76a8fdd6e6cb0ec59
Signed-off-by: Marc-Andre Laperle <malaperle@gmail.com>
This commit is contained in:
Marc-Andre Laperle 2018-12-01 00:09:13 -05:00 committed by Doug Schaefer
parent 228708a4dc
commit 597b0dd83e

View file

@ -1,26 +0,0 @@
/*******************************************************************************
* Copyright (c) 2002, 2012 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:
* Rational Software - Initial API and implementation
*******************************************************************************/
package org.eclipse.cdt.internal.core.model;
/**
* The Element Info of a Working Copy.
* @deprecated Use the extended class directly
*/
@Deprecated
public class WorkingCopyInfo extends TranslationUnitInfo {
public WorkingCopyInfo(CElement element) {
super(element);
}
}