Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWassim Melhem2004-10-28 19:52:12 +0000
committerWassim Melhem2004-10-28 19:52:12 +0000
commit97302f3e5b4087d75dd7897307a6ac4ed62f716a (patch)
tree5cc5db6b79f9a4c80b8d7eb2c702eb165d779574
parent1c98e3aca8ae9d5d0e67e2e68d6e649d9cf61479 (diff)
downloadeclipse.pde.ui-97302f3e5b4087d75dd7897307a6ac4ed62f716a.tar.gz
eclipse.pde.ui-97302f3e5b4087d75dd7897307a6ac4ed62f716a.tar.xz
eclipse.pde.ui-97302f3e5b4087d75dd7897307a6ac4ed62f716a.zip
*** empty log message ***
-rw-r--r--ui/org.eclipse.pde.core/src/org/eclipse/pde/internal/core/ischema/ISchemaAttribute.java7
1 files changed, 1 insertions, 6 deletions
diff --git a/ui/org.eclipse.pde.core/src/org/eclipse/pde/internal/core/ischema/ISchemaAttribute.java b/ui/org.eclipse.pde.core/src/org/eclipse/pde/internal/core/ischema/ISchemaAttribute.java
index f2ec7b6257..7577f70dcc 100644
--- a/ui/org.eclipse.pde.core/src/org/eclipse/pde/internal/core/ischema/ISchemaAttribute.java
+++ b/ui/org.eclipse.pde.core/src/org/eclipse/pde/internal/core/ischema/ISchemaAttribute.java
@@ -32,15 +32,10 @@ public interface ISchemaAttribute extends ISchemaObject, IMetaAttribute {
public static final int DEFAULT = 2;
/**
- * This attribute is deprecated and should not be used.
- */
- public static final int DEPRECATED = 3;
-
- /**
* Table of the 'use' clause choices.
*/
public static final String[] useTable = {
- "optional", "required", "default", "deprecated" }; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
+ "optional", "required", "default" }; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
/**
* Returns the type of this attribute. Attributes can only have simple

Back to the top