diff dwtx/text/edits/MultiTextEdit.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 51e6e63f930e
children 5cf141e43417
line wrap: on
line diff
--- a/dwtx/text/edits/MultiTextEdit.d	Sun Aug 24 01:52:31 2008 +0200
+++ b/dwtx/text/edits/MultiTextEdit.d	Sun Aug 24 02:20:40 2008 +0200
@@ -108,7 +108,7 @@
      * @exception MalformedTreeException if the edit isn't in a valid state
      *  and can therefore not be executed
      */
-    protected void checkIntegrity() throws MalformedTreeException {
+    protected void checkIntegrity()  {
         // does nothing
     }
 
@@ -207,14 +207,14 @@
     /*
      * @see TextEdit#performConsistencyCheck
      */
-    void performConsistencyCheck(TextEditProcessor processor, IDocument document) throws MalformedTreeException {
+    void performConsistencyCheck(TextEditProcessor processor, IDocument document)  {
         checkIntegrity();
     }
 
     /*
      * @see TextEdit#performDocumentUpdating
      */
-    int performDocumentUpdating(IDocument document) throws BadLocationException {
+    int performDocumentUpdating(IDocument document)  {
         fDelta= 0;
         return fDelta;
     }