comparison dwtx/jface/text/rules/DefaultPartitioner.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 b6bad70d540a
comparison
equal deleted inserted replaced
135:65801ad2b265 136:6dcb0baaa031
717 717
718 /* 718 /*
719 * @see dwtx.jface.text.IDocumentPartitionerExtension3#startRewriteSession(dwtx.jface.text.DocumentRewriteSession) 719 * @see dwtx.jface.text.IDocumentPartitionerExtension3#startRewriteSession(dwtx.jface.text.DocumentRewriteSession)
720 * @since 3.1 720 * @since 3.1
721 */ 721 */
722 public void startRewriteSession(DocumentRewriteSession session) throws IllegalStateException { 722 public void startRewriteSession(DocumentRewriteSession session) {
723 if (fActiveRewriteSession !is null) 723 if (fActiveRewriteSession !is null)
724 throw new IllegalStateException(); 724 throw new IllegalStateException();
725 fActiveRewriteSession= session; 725 fActiveRewriteSession= session;
726 } 726 }
727 727