From d549a3b89d8c042bf0cdcf7f11f39f52bb99d3a1 Mon Sep 17 00:00:00 2001 From: triton Date: Mon, 6 May 2013 02:46:20 +0100 Subject: [PATCH] Remove unused code. --- src/Generator/Generators/CSharp/CSharpTextTemplate.cs | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/Generator/Generators/CSharp/CSharpTextTemplate.cs b/src/Generator/Generators/CSharp/CSharpTextTemplate.cs index 2cedf7fb..90e11273 100644 --- a/src/Generator/Generators/CSharp/CSharpTextTemplate.cs +++ b/src/Generator/Generators/CSharp/CSharpTextTemplate.cs @@ -1,8 +1,8 @@ using System; using System.Collections.Generic; using System.Globalization; +using System.IO; using System.Linq; -using Cxxi.Types; namespace Cxxi.Generators.CSharp { @@ -243,9 +243,6 @@ namespace Cxxi.Generators.CSharp NewLine(); WriteStartBraceIndent(); - WriteLine("const string DllName = \"{0}.dll\";", Library.Name); - NewLine(); - if (!@class.IsOpaque) { GenerateClassInternals(@class); @@ -404,9 +401,6 @@ namespace Cxxi.Generators.CSharp Write("public unsafe "); - if (@class.IsAbstract) - Write("abstract "); - if (Options.GeneratePartialClasses) Write("partial ");