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

final
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 22:34:04 +0200
parents 51e6e63f930e
children a9566845f1cb
line wrap: on
line diff
--- a/dwtx/jface/text/GapTextStore.d	Sun Aug 24 22:31:00 2008 +0200
+++ b/dwtx/jface/text/GapTextStore.d	Sun Aug 24 22:34:04 2008 +0200
@@ -187,19 +187,19 @@
      * The minimum gap size allocated when re-allocation occurs.
      * @since 3.3
      */
-    private final int fMinGapSize;
+    private const int fMinGapSize;
     /**
      * The maximum gap size allocated when re-allocation occurs.
      * @since 3.3
      */
-    private final int fMaxGapSize;
+    private const int fMaxGapSize;
     /**
      * The multiplier to compute the array size from the content length
      * (1&nbsp;&lt;=&nbsp;fSizeMultiplier&nbsp;&lt;=&nbsp;2).
      * 
      * @since 3.3
      */
-    private final float fSizeMultiplier;
+    private const float fSizeMultiplier;
 
     /** The store's content */
     private char[] fContent= new char[0];