From f190c1ff0bbfe1d31821d9f8d9b9609af9dbbdcf Mon Sep 17 00:00:00 2001 From: Martin Date: Mon, 16 May 2022 16:48:43 +0200 Subject: [PATCH] FpDebug: remove empty code --- components/fpdebug/fpdbgdwarf.pas | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/components/fpdebug/fpdbgdwarf.pas b/components/fpdebug/fpdbgdwarf.pas index 5d1e9f201d..b2581fe6a6 100644 --- a/components/fpdebug/fpdbgdwarf.pas +++ b/components/fpdebug/fpdbgdwarf.pas @@ -398,9 +398,6 @@ type { TFpValueDwarfStructBase } TFpValueDwarfStructBase = class(TFpValueDwarf) - protected - function GetMember(AIndex: Int64): TFpValue; override; - function GetMemberByName(const AIndex: String): TFpValue; override; end; TFpValueDwarfStruct = class(TFpValueDwarfStructBase) @@ -1085,20 +1082,6 @@ begin EvaluatedFields := EvaluatedFields + [sfiAddress]; end; -{ TFpValueDwarfStructBase } - -function TFpValueDwarfStructBase.GetMember(AIndex: Int64): TFpValue; -begin - Result := inherited GetMember(AIndex); -end; - -function TFpValueDwarfStructBase.GetMemberByName(const AIndex: String - ): TFpValue; -begin - Result := inherited GetMemberByName(AIndex); - -end; - { TFpValueDwarfSubroutine } function TFpValueDwarfSubroutine.IsValidTypeCast: Boolean;