Code formatting

This commit is contained in:
Michael Schimmel
2025-06-24 11:18:10 +02:00
parent fdea3cf26a
commit ed8619650c
5 changed files with 12 additions and 12 deletions
+2 -2
View File
@@ -405,7 +405,7 @@ end;
class function TMycFlag.CreateDirty: TFlag.IFlag;
begin
// Factory method to create a new TMycFlag instance.
Result := TMycFlag.Create( true );
Result := TMycFlag.Create(true);
end;
destructor TMycFlag.Destroy;
@@ -505,7 +505,7 @@ end;
constructor TMycObserverFlag.Create(const ASignal: TSignal.ISignal);
begin
inherited Create( false );
inherited Create(false);
FSignal := ASignal;
end;