diff dwtx/jface/text/DefaultIndentLineAutoEditStrategy.d @ 136:6dcb0baaa031

Regex removal of throws decls, some instanceof
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 02:20:40 +0200
parents 7d818bd32d63
children
line wrap: on
line diff
--- a/dwtx/jface/text/DefaultIndentLineAutoEditStrategy.d	Sun Aug 24 01:52:31 2008 +0200
+++ b/dwtx/jface/text/DefaultIndentLineAutoEditStrategy.d	Sun Aug 24 02:20:40 2008 +0200
@@ -184,7 +184,7 @@
      * @return the offset in the specified range whose character is not a space or tab
      * @exception BadLocationException if position is an invalid range in the given document
      */
-    protected int findEndOfWhiteSpace(IDocument document, int offset, int end) throws BadLocationException {
+    protected int findEndOfWhiteSpace(IDocument document, int offset, int end)  {
         while (offset < end) {
             char c= document.getChar(offset);
             if (c !is ' ' && c !is '\t') {