mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-01 23:39:48 +02:00
* made FPathInfo field of TServletRequest protected instead of private,
because it's exposed by a property in a derived class git-svn-id: trunk@13793 -
This commit is contained in:
parent
63b8ff87c8
commit
da8355c830
@ -35,8 +35,10 @@ type
|
||||
TServletRequest = class
|
||||
private
|
||||
FInputStream: TStream;
|
||||
FScheme, FPathInfo: String;
|
||||
FScheme: String;
|
||||
protected
|
||||
FPathInfo: String;
|
||||
|
||||
function GetContentLength: Integer; virtual; abstract;
|
||||
function GetContentType: String; virtual; abstract;
|
||||
function GetProtocol: String; virtual; abstract;
|
||||
|
Loading…
Reference in New Issue
Block a user