From 597b0dd83ea5f29c4e3e51ec17ba9438d24ab1aa Mon Sep 17 00:00:00 2001 From: Marc-Andre Laperle Date: Sat, 1 Dec 2018 00:09:13 -0500 Subject: [PATCH] Remove WorkingCopyInfo class (internal, unused and deprecated) Change-Id: If883af97139c4b00f93a99c76a8fdd6e6cb0ec59 Signed-off-by: Marc-Andre Laperle --- .../internal/core/model/WorkingCopyInfo.java | 26 ------------------- 1 file changed, 26 deletions(-) delete mode 100644 core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/WorkingCopyInfo.java diff --git a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/WorkingCopyInfo.java b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/WorkingCopyInfo.java deleted file mode 100644 index b24aa4e9f96..00000000000 --- a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/WorkingCopyInfo.java +++ /dev/null @@ -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); - } -}