Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Keller2013-03-12 16:03:12 +0000
committerMarkus Keller2013-03-12 16:03:12 +0000
commit150a5a36aced3fa506baa5ff1c2788af80ed32db (patch)
tree1bbd3e2ded496388a0b82f54aa826b241ec7c9ce /bundles/org.eclipse.equinox.bidi
parent3c0f419f41d1e83256757acaeabe5564398fdb56 (diff)
downloadrt.equinox.bundles-150a5a36aced3fa506baa5ff1c2788af80ed32db.tar.gz
rt.equinox.bundles-150a5a36aced3fa506baa5ff1c2788af80ed32db.tar.xz
rt.equinox.bundles-150a5a36aced3fa506baa5ff1c2788af80ed32db.zip
one spelling of "regexp?" is enough
Diffstat (limited to 'bundles/org.eclipse.equinox.bidi')
-rw-r--r--bundles/org.eclipse.equinox.bidi/src/org/eclipse/equinox/bidi/StructuredTextTypeHandlerFactory.java2
-rw-r--r--bundles/org.eclipse.equinox.bidi/src/org/eclipse/equinox/bidi/internal/StructuredTextTypesCollector.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.equinox.bidi/src/org/eclipse/equinox/bidi/StructuredTextTypeHandlerFactory.java b/bundles/org.eclipse.equinox.bidi/src/org/eclipse/equinox/bidi/StructuredTextTypeHandlerFactory.java
index 74410f4f6..1a04a6111 100644
--- a/bundles/org.eclipse.equinox.bidi/src/org/eclipse/equinox/bidi/StructuredTextTypeHandlerFactory.java
+++ b/bundles/org.eclipse.equinox.bidi/src/org/eclipse/equinox/bidi/StructuredTextTypeHandlerFactory.java
@@ -69,7 +69,7 @@ public final class StructuredTextTypeHandlerFactory {
* Structured text handler identifier for regular expressions,
* possibly spanning multiple lines.
*/
- public static final String REGEXP = "regex"; //$NON-NLS-1$
+ public static final String REGEX = "regex"; //$NON-NLS-1$
/**
* Structured text handler identifier for SQL statements,
diff --git a/bundles/org.eclipse.equinox.bidi/src/org/eclipse/equinox/bidi/internal/StructuredTextTypesCollector.java b/bundles/org.eclipse.equinox.bidi/src/org/eclipse/equinox/bidi/internal/StructuredTextTypesCollector.java
index 1d702bbc1..a1f2cdc58 100644
--- a/bundles/org.eclipse.equinox.bidi/src/org/eclipse/equinox/bidi/internal/StructuredTextTypesCollector.java
+++ b/bundles/org.eclipse.equinox.bidi/src/org/eclipse/equinox/bidi/internal/StructuredTextTypesCollector.java
@@ -144,7 +144,7 @@ public class StructuredTextTypesCollector implements IRegistryEventListener {
types.put(StructuredTextTypeHandlerFactory.EMAIL, new StructuredTextEmail());
types.put(StructuredTextTypeHandlerFactory.FILE, new StructuredTextFile());
types.put(StructuredTextTypeHandlerFactory.JAVA, new StructuredTextJava());
- types.put(StructuredTextTypeHandlerFactory.REGEXP, new StructuredTextRegex());
+ types.put(StructuredTextTypeHandlerFactory.REGEX, new StructuredTextRegex());
types.put(StructuredTextTypeHandlerFactory.SQL, new StructuredTextSql());
types.put(StructuredTextTypeHandlerFactory.UNDERSCORE, new StructuredTextUnderscore());
types.put(StructuredTextTypeHandlerFactory.URL, new StructuredTextURL());

Back to the top