comparison dwtx/jface/text/reconciler/AbstractReconciler.d @ 133:7d818bd32d63

Fix ctors to this with gvim regexp
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 01:29:22 +0200
parents c4fb132a086c
children 25f1f92fa3df
comparison
equal deleted inserted replaced
132:77bd3bb3d7b8 133:7d818bd32d63
83 * Creates a new background thread. The thread 83 * Creates a new background thread. The thread
84 * runs with minimal priority. 84 * runs with minimal priority.
85 * 85 *
86 * @param name the thread's name 86 * @param name the thread's name
87 */ 87 */
88 public BackgroundThread(String name) { 88 public this(String name) {
89 super(name); 89 super(name);
90 setPriority(Thread.MIN_PRIORITY); 90 setPriority(Thread.MIN_PRIORITY);
91 setDaemon(true); 91 setDaemon(true);
92 } 92 }
93 93
367 367
368 368
369 /** 369 /**
370 * Creates a new reconciler without configuring it. 370 * Creates a new reconciler without configuring it.
371 */ 371 */
372 protected AbstractReconciler() { 372 protected this() {
373 fProgressMonitor= new NullProgressMonitor(); 373 fProgressMonitor= new NullProgressMonitor();
374 } 374 }
375 375
376 /** 376 /**
377 * Tells the reconciler how long it should wait for further text changes before 377 * Tells the reconciler how long it should wait for further text changes before