diff dwtx/jface/text/Document.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 f8d52b926852
line wrap: on
line diff
--- a/dwtx/jface/text/Document.d	Sun Aug 24 01:52:31 2008 +0200
+++ b/dwtx/jface/text/Document.d	Sun Aug 24 02:20:40 2008 +0200
@@ -211,7 +211,7 @@
      * @see dwtx.jface.text.IRepairableDocumentExtension#isLineInformationRepairNeeded(int, int, java.lang.String)
      * @since 3.4
      */
-    public bool isLineInformationRepairNeeded(int offset, int length, String text) throws BadLocationException {
+    public bool isLineInformationRepairNeeded(int offset, int length, String text)  {
         if ((0 > offset) || (0 > length) || (offset + length > getLength()))
             throw new BadLocationException();