diff dwtx/text/edits/DeleteEdit.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 c4fb132a086c
children
line wrap: on
line diff
--- a/dwtx/text/edits/DeleteEdit.d	Sun Aug 24 01:52:31 2008 +0200
+++ b/dwtx/text/edits/DeleteEdit.d	Sun Aug 24 02:20:40 2008 +0200
@@ -87,7 +87,7 @@
     /*
      * @see TextEdit#performDocumentUpdating
      */
-    int performDocumentUpdating(IDocument document) throws BadLocationException {
+    int performDocumentUpdating(IDocument document)  {
         document.replace(getOffset(), getLength(), ""); //$NON-NLS-1$
         fDelta= -getLength();
         return fDelta;