diff dwtx/jface/text/FindReplaceDocumentAdapter.d @ 156:a9566845f1cb

...
author Frank Benoit <benoit@tionex.de>
date Mon, 25 Aug 2008 19:03:46 +0200
parents 000f9136b8f7
children 7926b636c282
line wrap: on
line diff
--- a/dwtx/jface/text/FindReplaceDocumentAdapter.d	Mon Aug 25 00:45:19 2008 +0200
+++ b/dwtx/jface/text/FindReplaceDocumentAdapter.d	Mon Aug 25 19:03:46 2008 +0200
@@ -283,7 +283,7 @@
      * @throws IllegalStateException if a REPLACE or REPLACE_FIND operation is not preceded by a successful FIND operation
      * @throws PatternSyntaxException if a regular expression has invalid syntax
      */
-    private IRegion findReplace(final FindReplaceOperationCode operationCode, int startOffset, String findString, String replaceText, bool forwardSearch, bool caseSensitive, bool wholeWord, bool regExSearch)  {
+    private IRegion findReplace(FindReplaceOperationCode operationCode, int startOffset, String findString, String replaceText, bool forwardSearch, bool caseSensitive, bool wholeWord, bool regExSearch)  {
 
         // Validate option combinations
         Assert.isTrue(!(regExSearch && wholeWord));
@@ -573,7 +573,7 @@
      * @return the new offset
      * @since 3.4
      */
-    private int interpretReplaceEscape(final char ch, int i, StringBuffer buf, String replaceText, String foundText) {
+    private int interpretReplaceEscape(char ch, int i, StringBuffer buf, String replaceText, String foundText) {
         int length= replaceText.length();
         switch (ch) {
             case 'r':