diff dwtx/jface/text/source/ILineDiffer.d @ 139:93a6ec48fd28

Regexp throws removal in interfaces
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 02:31:41 +0200
parents c4fb132a086c
children
line wrap: on
line diff
--- a/dwtx/jface/text/source/ILineDiffer.d	Sun Aug 24 02:26:23 2008 +0200
+++ b/dwtx/jface/text/source/ILineDiffer.d	Sun Aug 24 02:31:41 2008 +0200
@@ -122,7 +122,7 @@
      * @param line the line number of the line to be restored.
      * @throws BadLocationException if <code>line</code> is out of bounds.
      */
-    void revertLine(int line) throws BadLocationException;
+    void revertLine(int line) ;
 
     /**
      * Reverts a block of modified / added lines to their original state, including any deleted
@@ -132,7 +132,7 @@
      * @param line any line in the block to be reverted.
      * @throws BadLocationException if <code>line</code> is out of bounds.
      */
-    void revertBlock(int line) throws BadLocationException;
+    void revertBlock(int line) ;
 
     /**
      * Reverts a range of lines to their original state, including any deleted
@@ -142,7 +142,7 @@
      * @param nLines the number of lines to be reverted, must be &gt; 0.
      * @throws BadLocationException if <code>line</code> is out of bounds.
      */
-    void revertSelection(int line, int nLines) throws BadLocationException;
+    void revertSelection(int line, int nLines) ;
 
     /**
      * Restores the deleted lines after <code>line</code>.
@@ -151,5 +151,5 @@
      * @return the number of restored lines.
      * @throws BadLocationException if <code>line</code> is out of bounds.
      */
-    int restoreAfterLine(int line) throws BadLocationException;
+    int restoreAfterLine(int line) ;
 }