From 0ce1eab5adf3bdaea3b45d7fe8abd0ba3719a8e2 Mon Sep 17 00:00:00 2001 From: SiboVG Date: Tue, 27 Jun 2023 23:22:57 +0200 Subject: [PATCH] Non-ASCII characters aren't allowed :( --- core/src/net/sf/openrocket/rocketcomponent/RocketComponent.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/net/sf/openrocket/rocketcomponent/RocketComponent.java b/core/src/net/sf/openrocket/rocketcomponent/RocketComponent.java index 389c9e283..94b70faa0 100644 --- a/core/src/net/sf/openrocket/rocketcomponent/RocketComponent.java +++ b/core/src/net/sf/openrocket/rocketcomponent/RocketComponent.java @@ -737,7 +737,7 @@ public abstract class RocketComponent implements ChangeSource, Cloneable, Iterab // This can happen due to a race condition when a loadFrom() action is performed of the rocket (after // an undo operation) but the rocket is not yet fully loaded (the sustainer does not yet have the rocket as // its parent => getRocket() will not return the rocket, but the sustainer). In that case, just return 0 and - // hope that a future call of this method will succeed 🤞. + // hope that a future call of this method will succeed. return 0; } final FlightConfiguration configuration = rocket.getSelectedConfiguration();