diff dwtx/jface/text/source/projection/IProjectionPosition.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/projection/IProjectionPosition.d	Sun Aug 24 02:26:23 2008 +0200
+++ b/dwtx/jface/text/source/projection/IProjectionPosition.d	Sun Aug 24 02:31:41 2008 +0200
@@ -53,7 +53,7 @@
      * @return the foldable regions for this position
      * @throws BadLocationException if accessing the document fails
      */
-    IRegion[] computeProjectionRegions(IDocument document) throws BadLocationException;
+    IRegion[] computeProjectionRegions(IDocument document) ;
 
     /**
      * Returns the offset of the caption (the anchor region) of this projection
@@ -64,6 +64,6 @@
      * @return the caption offset relative to the position's offset
      * @throws BadLocationException if accessing the document fails
      */
-    int computeCaptionOffset(IDocument document) throws BadLocationException;
+    int computeCaptionOffset(IDocument document) ;
 
 }