Browse Source

[spine-csharp] Removed whitespace.

NathanSweet 9 years ago
parent
commit
0a08704ee8
1 changed files with 2 additions and 2 deletions
  1. 2 2
      spine-csharp/src/Skeleton.cs

+ 2 - 2
spine-csharp/src/Skeleton.cs

@@ -82,8 +82,8 @@ namespace Spine {
 					bone = new Bone(boneData, this, null);				
 				} else {
 					Bone parent = bones.Items[boneData.parent.index];
-					bone = new Bone (boneData, this, parent);
-					parent.children.Add (bone);
+					bone = new Bone(boneData, this, parent);
+					parent.children.Add(bone);
 				}
 				bones.Add(bone);
 			}