diff mde/mergetag/exception.d @ 25:2c28ee04a4ed

Some minor and some futile efforts. Played around with init functions, had problems, gave up and put them back. Removed idea for multiple init stages; it's not good for performance or simplicity. Adjusted exception messages. committer: Diggory Hardy <diggory.hardy@gmail.com>
author Diggory Hardy <diggory.hardy@gmail.com>
date Thu, 03 Apr 2008 17:26:52 +0100
parents 5f90774ea1ef
children 611f7b9063c6
line wrap: on
line diff
--- a/mde/mergetag/exception.d	Thu Mar 27 16:15:21 2008 +0000
+++ b/mde/mergetag/exception.d	Thu Apr 03 17:26:52 2008 +0100
@@ -24,10 +24,8 @@
 
 /// Base MergeTag exception class.
 class MTException : mdeException {
-    static const char[] symbol;
-    static this() {	symbol = super.symbol ~ ".mergetag";	}
     char[] getSymbol () {
-        return symbol;
+        return super.getSymbol ~ ".mergetag";
     }
     
     this (char[] msg) {