2009-04-08 Atsushi Enomoto <atsushi@ximian.com>
authorAtsushi Eno <atsushieno@gmail.com>
Wed, 8 Apr 2009 04:13:56 +0000 (04:13 -0000)
committerAtsushi Eno <atsushieno@gmail.com>
Wed, 8 Apr 2009 04:13:56 +0000 (04:13 -0000)
* CodeWriter.cs : move into namespace.

svn path=/trunk/mcs/; revision=131285

mcs/class/System.ServiceModel/Mono.CodeGeneration/ChangeLog
mcs/class/System.ServiceModel/Mono.CodeGeneration/CodeWriter.cs

index dd91a4c2ff65072946b9acca88a7951cffdf1cbe..b7d38edd2918e1bce2bc69141c11794d2cd254a6 100755 (executable)
@@ -1,3 +1,7 @@
+2009-04-08  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * CodeWriter.cs : move into namespace.
+
 2009-02-19  Atsushi Enomoto  <atsushi@ximian.com>
 
        * CodeTryBlock.cs : new statement support.
index cdcdb17dbc35b76478cc0488392dbd6f7b46037f..31be509186aff8f70ab57bda50e1be24555a93eb 100644 (file)
@@ -24,6 +24,9 @@
 using System;
 using System.IO;
 
+namespace Mono.CodeGeneration
+{
+
 public class CodeWriter
 {
        TextWriter writer;
@@ -84,3 +87,5 @@ public class CodeWriter
                indent--;
        }
 }
+
+}