From 3dffd729858bfe5245b736cda3824fcc2ebe7243 Mon Sep 17 00:00:00 2001 From: Harald Csaszar Date: Wed, 15 Oct 2025 18:36:12 +0200 Subject: [PATCH] [csharp] Minor formatting. --- spine-csharp/src/Attachments/AtlasAttachmentLoader.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }