[spine-csharp] Removed whitespace.

This commit is contained in:
NathanSweet 2016-07-04 02:13:23 +02:00
parent 5c9b1f30eb
commit 0a08704ee8

View File

@ -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);
}