diff --git a/spine-csharp/src/Attachments/AtlasAttachmentLoader.cs b/spine-csharp/src/Attachments/AtlasAttachmentLoader.cs index 160555e7d..81c028a59 100644 --- a/spine-csharp/src/Attachments/AtlasAttachmentLoader.cs +++ b/spine-csharp/src/Attachments/AtlasAttachmentLoader.cs @@ -44,7 +44,7 @@ namespace Spine { } public AtlasAttachmentLoader (bool allowMissingRegions, params Atlas[] atlasArray) { - if (atlasArray == null) throw new ArgumentNullException ("atlas", "atlas array cannot be null."); + if (atlasArray == null) throw new ArgumentNullException("atlas", "atlas array cannot be null."); this.atlasArray = atlasArray; this.allowMissingRegions = allowMissingRegions; }