You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@etch.apache.org by sc...@apache.org on 2009/02/01 04:20:01 UTC

svn commit: r739689 - in /incubator/etch/trunk: binding-csharp/runtime/src/main/csharp/Properties/AssemblyInfo.cs binding-csharp/runtime/src/main/csharp/Properties/AssemblyInfo.cs.tmpl tests/src/test/java/org/apache/etch/tests/TestXml.java

Author: sccomer
Date: Sun Feb  1 03:20:00 2009
New Revision: 739689

URL: http://svn.apache.org/viewvc?rev=739689&view=rev
Log:
remove optimize using.

added Binding to description.

corrected xml binding unit test.

Modified:
    incubator/etch/trunk/binding-csharp/runtime/src/main/csharp/Properties/AssemblyInfo.cs
    incubator/etch/trunk/binding-csharp/runtime/src/main/csharp/Properties/AssemblyInfo.cs.tmpl
    incubator/etch/trunk/tests/src/test/java/org/apache/etch/tests/TestXml.java

Modified: incubator/etch/trunk/binding-csharp/runtime/src/main/csharp/Properties/AssemblyInfo.cs
URL: http://svn.apache.org/viewvc/incubator/etch/trunk/binding-csharp/runtime/src/main/csharp/Properties/AssemblyInfo.cs?rev=739689&r1=739688&r2=739689&view=diff
==============================================================================
--- incubator/etch/trunk/binding-csharp/runtime/src/main/csharp/Properties/AssemblyInfo.cs (original)
+++ incubator/etch/trunk/binding-csharp/runtime/src/main/csharp/Properties/AssemblyInfo.cs Sun Feb  1 03:20:00 2009
@@ -5,7 +5,7 @@
 // set of attributes. Change these attribute values to modify the information
 // associated with an assembly.
 [assembly: AssemblyTitle("Etch")]
-[assembly: AssemblyDescription("Etch C# Runtime DLL")]
+[assembly: AssemblyDescription("Etch C# Binding Runtime DLL")]
 [assembly: AssemblyConfiguration("")]
 [assembly: AssemblyCompany("Cisco Systems")]
 [assembly: AssemblyProduct("Etch")]

Modified: incubator/etch/trunk/binding-csharp/runtime/src/main/csharp/Properties/AssemblyInfo.cs.tmpl
URL: http://svn.apache.org/viewvc/incubator/etch/trunk/binding-csharp/runtime/src/main/csharp/Properties/AssemblyInfo.cs.tmpl?rev=739689&r1=739688&r2=739689&view=diff
==============================================================================
--- incubator/etch/trunk/binding-csharp/runtime/src/main/csharp/Properties/AssemblyInfo.cs.tmpl (original)
+++ incubator/etch/trunk/binding-csharp/runtime/src/main/csharp/Properties/AssemblyInfo.cs.tmpl Sun Feb  1 03:20:00 2009
@@ -1,12 +1,11 @@
 using System.Reflection;
-using System.Runtime.CompilerServices;
 using System.Runtime.InteropServices;
 
 // General Information about an assembly is controlled through the following 
 // set of attributes. Change these attribute values to modify the information
 // associated with an assembly.
 [assembly: AssemblyTitle("Etch")]
-[assembly: AssemblyDescription("Etch C# Runtime DLL")]
+[assembly: AssemblyDescription("Etch C# Binding Runtime DLL")]
 [assembly: AssemblyConfiguration("")]
 [assembly: AssemblyCompany("Cisco Systems")]
 [assembly: AssemblyProduct("Etch")]

Modified: incubator/etch/trunk/tests/src/test/java/org/apache/etch/tests/TestXml.java
URL: http://svn.apache.org/viewvc/incubator/etch/trunk/tests/src/test/java/org/apache/etch/tests/TestXml.java?rev=739689&r1=739688&r2=739689&view=diff
==============================================================================
--- incubator/etch/trunk/tests/src/test/java/org/apache/etch/tests/TestXml.java (original)
+++ incubator/etch/trunk/tests/src/test/java/org/apache/etch/tests/TestXml.java Sun Feb  1 03:20:00 2009
@@ -189,7 +189,7 @@
 		
 		checkExternProperties(externNode, "Blob", "-1308039838", "org.apache.etch.tests.Test1.Blob");
 		checkExternMapProperties(externNode, "java", "StrIntHashMap", "org.apache.etch.bindings.java.util.StrIntHashMap", "StrIntHashMapSerializer",  "org.apache.etch.bindings.java.util.StrIntHashMapSerializer");
-		checkExternMapProperties(externNode, "csharp", "StrIntHashMap", "Etch.Util", "StrIntHashMapSerializer",  "Etch.Util");
+		checkExternMapProperties(externNode, "csharp", "StrIntHashMap", "Org.Apache.Etch.Bindings.Csharp.Util", "StrIntHashMapSerializer",  "Org.Apache.Etch.Bindings.Csharp.Util");
 	}
 		
 	/** @throws Exception */