Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc-Andre Laperle2018-12-01 05:09:13 +0000
committerDoug Schaefer2018-12-02 18:51:58 +0000
commit597b0dd83ea5f29c4e3e51ec17ba9438d24ab1aa (patch)
treea5fbcb032c76340dba51ddf9e6c01355b3167dd8 /core/org.eclipse.cdt.core
parent228708a4dcfff3b47406d0a97588c7ccf007e638 (diff)
downloadorg.eclipse.cdt-597b0dd83ea5f29c4e3e51ec17ba9438d24ab1aa.tar.gz
org.eclipse.cdt-597b0dd83ea5f29c4e3e51ec17ba9438d24ab1aa.tar.xz
org.eclipse.cdt-597b0dd83ea5f29c4e3e51ec17ba9438d24ab1aa.zip
Remove WorkingCopyInfo class (internal, unused and deprecated)
Change-Id: If883af97139c4b00f93a99c76a8fdd6e6cb0ec59 Signed-off-by: Marc-Andre Laperle <malaperle@gmail.com>
Diffstat (limited to 'core/org.eclipse.cdt.core')
-rw-r--r--core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/WorkingCopyInfo.java26
1 files changed, 0 insertions, 26 deletions
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);
- }
-}

Back to the top