Browse Source

2003-07-10 Andreas Nahr <[email protected]>

	* Executor.cs: Changed abstract to sealed

svn path=/trunk/mcs/; revision=16107
Andreas N 22 năm trước cách đây
mục cha
commit
fd1549e5ea

+ 4 - 0
mcs/class/System/System.CodeDom.Compiler/ChangeLog

@@ -1,3 +1,7 @@
+2003-07-10  Andreas Nahr <[email protected]>
+
+	* Executor.cs: Changed abstract to sealed
+
 2003-07-07  Andreas Nahr <[email protected]>
 
 	* CodeDomProvider.cs: Removed unneccesary attribute according to corecompare

+ 1 - 1
mcs/class/System/System.CodeDom.Compiler/Executor.cs

@@ -13,7 +13,7 @@ using System.IO;
 namespace System.CodeDom.Compiler
 {
 
-	public abstract class Executor
+	public sealed class Executor
 	{
 
 		private Executor ()