From b85fc01c3ba9e756e14ec9c7d4c9cd3c368d64eb Mon Sep 17 00:00:00 2001 From: arthurkehrwald <50906979+arthurkehrwald@users.noreply.github.com> Date: Fri, 6 Sep 2024 10:52:18 +0200 Subject: [PATCH] Fix whitespace --- .../VisualPinball.Unity/VPT/Ramp/RampComponent.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/VisualPinball.Unity/VisualPinball.Unity/VPT/Ramp/RampComponent.cs b/VisualPinball.Unity/VisualPinball.Unity/VPT/Ramp/RampComponent.cs index d4926d87d..d9b60f264 100644 --- a/VisualPinball.Unity/VisualPinball.Unity/VPT/Ramp/RampComponent.cs +++ b/VisualPinball.Unity/VisualPinball.Unity/VPT/Ramp/RampComponent.cs @@ -429,11 +429,11 @@ protected static void WalkChildren(IEnumerable node, Action action) protected void UpdateSurfaceReferences(Transform obj) { var surfaceComponent = obj.gameObject.GetComponent(); - if (surfaceComponent != null && ReferenceEquals(surfaceComponent.Surface, this)) - { + if (surfaceComponent != null && ReferenceEquals(surfaceComponent.Surface, this)) + { surfaceComponent.OnSurfaceUpdated(); } - } + } #endregion }