diff dwtx/jface/text/FindReplaceDocumentAdapterContentProposalProvider.d @ 146:75302ef3f92f

final
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 22:34:04 +0200
parents 93a6ec48fd28
children f70d9508c95c
line wrap: on
line diff
--- a/dwtx/jface/text/FindReplaceDocumentAdapterContentProposalProvider.d	Sun Aug 24 22:31:00 2008 +0200
+++ b/dwtx/jface/text/FindReplaceDocumentAdapterContentProposalProvider.d	Sun Aug 24 22:34:04 2008 +0200
@@ -220,23 +220,23 @@
         /**
          * The whole regular expression.
          */
-        private final String fExpression;
+        private const String fExpression;
         /**
          * The document offset.
          */
-        private final int fDocumentOffset;
+        private const int fDocumentOffset;
         /**
          * The high-priority proposals.
          */
-        private final ArrayList fPriorityProposals;
+        private const ArrayList fPriorityProposals;
         /**
          * The low-priority proposals.
          */
-        private final ArrayList fProposals;
+        private const ArrayList fProposals;
         /**
          * <code>true</code> iff <code>fExpression</code> ends with an open escape.
          */
-        private final bool fIsEscape;
+        private const bool fIsEscape;
 
         /**
          * Creates a new Proposal Computer.
@@ -499,7 +499,7 @@
      * <code>true</code> iff the processor is for the find field.
      * <code>false</code> iff the processor is for the replace field.
      */
-    private final bool fIsFind;
+    private const bool fIsFind;
 
 
     /**