fcl-base: blowfish2: Remove unnecessary destructor from TBlowFish2Stream

This commit is contained in:
Oleg Latov 2025-03-16 12:01:56 +02:00 committed by Michael Van Canneyt
parent 2256593e92
commit 3874fb7725

View File

@ -76,7 +76,6 @@ Type
Public
Constructor Create(const AKey : UTF8String; Dest: TStream); overload; virtual;
Constructor Create(AKey : TBytes; Dest: TStream); overload; virtual;
Destructor Destroy; override;
end;
TBlowFish2EncryptStream = Class(TBlowFish2Stream)
@ -1044,12 +1043,6 @@ begin
FPos:=0;
end;
destructor TBlowFish2Stream.Destroy;
begin
FreeAndNil(FBF);
Inherited;
end;
{ ---------------------------------------------------------------------
TBlowFish2EncryptStream