comparison dwtx/jface/internal/text/revisions/ChangeRegion.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 75302ef3f92f
comparison
equal deleted inserted replaced
135:65801ad2b265 136:6dcb0baaa031
49 * 49 *
50 * @param revision the revision of the new region 50 * @param revision the revision of the new region
51 * @param lines the line range of the new region 51 * @param lines the line range of the new region
52 * @throws IndexOutOfBoundsException if the line range is not well-formed 52 * @throws IndexOutOfBoundsException if the line range is not well-formed
53 */ 53 */
54 public this(Revision revision, ILineRange lines) throws IndexOutOfBoundsException { 54 public this(Revision revision, ILineRange lines) {
55 Assert.isLegal(revision !is null); 55 Assert.isLegal(revision !is null);
56 Assert.isLegal(lines !is null); 56 Assert.isLegal(lines !is null);
57 fLines= Range.copy(lines); 57 fLines= Range.copy(lines);
58 fRevision=revision; 58 fRevision=revision;
59 clearDiff(); 59 clearDiff();