diff dwtx/jface/text/contentassist/CompletionProposalPopup.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 65801ad2b265
children b6bad70d540a
line wrap: on
line diff
--- a/dwtx/jface/text/contentassist/CompletionProposalPopup.d	Sun Aug 24 01:52:31 2008 +0200
+++ b/dwtx/jface/text/contentassist/CompletionProposalPopup.d	Sun Aug 24 02:20:40 2008 +0200
@@ -166,7 +166,7 @@
          * @see dwtx.core.commands.AbstractHandler#execute(dwtx.core.commands.ExecutionEvent)
          * @since 3.4
          */
-        public Object execute(ExecutionEvent event) throws ExecutionException {
+        public Object execute(ExecutionEvent event)  {
             int itemCount= fProposalTable.getItemCount();
             int selectionIndex= fProposalTable.getSelectionIndex();
             switch (fOperationCode) {
@@ -1743,7 +1743,7 @@
     /*
      * @since 3.1
      */
-    private bool isPrefixCompatible(CharSequence oneSequence, int oneOffset, CharSequence twoSequence, int twoOffset, IDocument document) throws BadLocationException {
+    private bool isPrefixCompatible(CharSequence oneSequence, int oneOffset, CharSequence twoSequence, int twoOffset, IDocument document)  {
         if (oneSequence is null || twoSequence is null)
             return true;