THRIFT-5005 Refactoring of the Delphi libs [ci skip]
Client: Delphi
Patch: Jens Geyer
diff --git a/lib/delphi/src/Thrift.Serializer.pas b/lib/delphi/src/Thrift.Serializer.pas
index 5f2905a..71b695c 100644
--- a/lib/delphi/src/Thrift.Serializer.pas
+++ b/lib/delphi/src/Thrift.Serializer.pas
@@ -36,7 +36,7 @@
type
// Generic utility for easily serializing objects into a byte array or Stream.
TSerializer = class
- private
+ strict private
FStream : TMemoryStream;
FTransport : ITransport;
FProtocol : IProtocol;
@@ -60,7 +60,7 @@
// Generic utility for easily deserializing objects from byte array or Stream.
TDeserializer = class
- private
+ strict private
FStream : TMemoryStream;
FTransport : ITransport;
FProtocol : IProtocol;