Merge branch 'BigIntegerParse'
[mono.git] / mcs / class / System.Transactions / System.Transactions / Enlistment.cs
index e1a8b95d5b5062559584d3025536846323fc8ab2..28342175e8a13694789bcf9f19f61c1ea3ae4f46 100644 (file)
@@ -22,10 +22,15 @@ namespace System.Transactions
                        done = false;
                }
 
-               [MonoTODO]
                public void Done ()
                {
                        done = true;
+
+                       InternalOnDone();
+               }
+
+               internal virtual void InternalOnDone ()
+               {
                }
        }
 }