<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -76,21 +76,23 @@ namespace Git.Core
 			Array.Copy (header, 0, this.content, 0, header.Length); // Copying the header first
 			Array.Copy (content, 0, this.content, header.Length, content.Length); // then the data
 			
-			Console.WriteLine (&quot;Length: &quot; + this.content.Length);
-			foreach (char c in this.content) {
-				if (c == '\n') {
-					Console.WriteLine (&quot;\\n&quot;);
-					continue;
-				}
-				if (c == '\0')
-					Console.Write (&quot;[NULL]&quot;);
-				Console.Write (c);
-			}
+			// TODO: remove debugging stuff
+//			Console.WriteLine (&quot;Length: &quot; + this.content.Length);
+//			foreach (char c in this.content) {
+//				if (c == '\n') {
+//					Console.WriteLine (&quot;\\n&quot;);
+//					continue;
+//				}
+//				if (c == '\0')
+//					Console.Write (&quot;[NULL]&quot;);
+//				Console.Write (c);
+//			}
 			
 			// initializing the id with the content
 			id = new SHA1 (this.content, true);
-			
-			Console.WriteLine (&quot;ID: &quot; + id.ToHexString ());
+
+			// TODO: remove debugging stuff
+//			Console.WriteLine (&quot;ID: &quot; + id.ToHexString ());
 		}
 		
 		/// &lt;summary&gt;
@@ -108,8 +110,8 @@ namespace Git.Core
 		public static byte[] CreateObjectHeader (Type objType, string dataSize)
 		{
 			return Encoding.UTF8.GetBytes (String.Format (&quot;{0} {1}\0&quot;,
-			                                                 Object.TypeToString (objType),
-			                                                 dataSize));
+			                                              Object.TypeToString (objType),
+			                                              dataSize));
 		}
 		
 		// These methods are to parse different objects from a input byte array
@@ -161,7 +163,7 @@ namespace Git.Core
 			if (input.Length == pos)
 				return false;
 			
-			while ((input [index] != (byte)'\n') &amp;&amp; (input [index] != (byte)0))
+			while ((input[index] != (byte)'\n') &amp;&amp; (input[index] != (byte)0))
 			{
 				if (index &lt; input.Length) {
 					index++;</diff>
      <filename>src/Git/Core/Object.cs</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>765905e563f8df7b2e9c3f17962a1e7c95c98b66</id>
    </parent>
  </parents>
  <author>
    <name>Igor Guerrero Fonseca</name>
    <email>igfgt1@gmail.com</email>
  </author>
  <url>http://github.com/igorgue/git-sharp/commit/1d28e7dee92af99866997c45c648686fdeaba84d</url>
  <id>1d28e7dee92af99866997c45c648686fdeaba84d</id>
  <committed-date>2009-02-12T23:30:59-08:00</committed-date>
  <authored-date>2009-02-12T23:30:59-08:00</authored-date>
  <message>removing some anoying debugging messages</message>
  <tree>99a61b6d7e692e906004e933251a52fe23ad8084</tree>
  <committer>
    <name>Igor Guerrero Fonseca</name>
    <email>igfgt1@gmail.com</email>
  </committer>
</commit>
