Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.bidi/src/org/eclipse/equinox/bidi/internal/consumable/BidiComplexSystem.java')
-rw-r--r--bundles/org.eclipse.equinox.bidi/src/org/eclipse/equinox/bidi/internal/consumable/BidiComplexSystem.java35
1 files changed, 0 insertions, 35 deletions
diff --git a/bundles/org.eclipse.equinox.bidi/src/org/eclipse/equinox/bidi/internal/consumable/BidiComplexSystem.java b/bundles/org.eclipse.equinox.bidi/src/org/eclipse/equinox/bidi/internal/consumable/BidiComplexSystem.java
deleted file mode 100644
index 83f341612..000000000
--- a/bundles/org.eclipse.equinox.bidi/src/org/eclipse/equinox/bidi/internal/consumable/BidiComplexSystem.java
+++ /dev/null
@@ -1,35 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2010, 2011 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- ******************************************************************************/
-package org.eclipse.equinox.bidi.internal.consumable;
-
-import org.eclipse.equinox.bidi.*;
-import org.eclipse.equinox.bidi.internal.BidiComplexSingle;
-
-/**
- * Processor adapted to processing expressions with the following string format:
- * <pre>
- * system(user)
- * </pre>
- */
-public class BidiComplexSystem extends BidiComplexSingle {
- static final BidiComplexFeatures FEATURES = new BidiComplexFeatures("(", 0, -1, -1, false, false); //$NON-NLS-1$
-
- /**
- * This method retrieves the features specific to this processor.
- *
- * @return features with one operator (opening parhenthesis),
- * no special cases, LTR direction for Arabic and Hebrew,
- * and support for both.
- */
- public BidiComplexFeatures init(BidiComplexHelper helper, BidiComplexEnvironment env) {
- return FEATURES;
- }
-}

Back to the top