Skip to content

Commit

Permalink
resolves 132
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelJustin-VEDA committed Mar 12, 2019
1 parent 990daef commit a2601bd
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion source/djAbstractConfig.pas
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ implementation

constructor TdjAbstractConfig.Create;
begin
inherited;
inherited Create;

FParams := TdjInitParameters.Create;
end;
Expand Down
2 changes: 1 addition & 1 deletion source/djContextHandlerCollection.pas
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ implementation

constructor TdjContextHandlerCollection.Create;
begin
inherited;
inherited Create;

// logging -----------------------------------------------------------------
{$IFDEF DARAJA_LOGGING}
Expand Down
2 changes: 1 addition & 1 deletion source/djGenericWebComponent.pas
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ implementation

constructor TdjGenericWebComponent.Create;
begin
inherited;
inherited Create;

// logging -----------------------------------------------------------------
{$IFDEF DARAJA_LOGGING}
Expand Down
2 changes: 1 addition & 1 deletion source/djHTTPConnector.pas
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ constructor TdjHTTPConnector.Create(const Handler: IHandler);
Logger := TdjLoggerFactory.GetLogger('dj.' + TdjHTTPConnector.ClassName);
{$ENDIF DARAJA_LOGGING}

inherited;
inherited Create(Handler);

Assert(Assigned(Handler));

Expand Down
2 changes: 1 addition & 1 deletion source/djHandlerCollection.pas
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ implementation

constructor TdjHandlerCollection.Create;
begin
inherited;
inherited Create;

// logging -----------------------------------------------------------------
{$IFDEF DARAJA_LOGGING}
Expand Down
2 changes: 1 addition & 1 deletion source/djHandlerList.pas
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ implementation

constructor TdjHandlerList.Create;
begin
inherited;
inherited Create;

// logging -----------------------------------------------------------------
{$IFDEF DARAJA_LOGGING}
Expand Down
2 changes: 1 addition & 1 deletion source/djHandlerWrapper.pas
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ procedure TdjHandlerWrapper.Handle(Target: string; Context: TdjServerContext;

constructor TdjHandlerWrapper.Create;
begin
inherited;
inherited Create;

// logging -----------------------------------------------------------------
{$IFDEF DARAJA_LOGGING}
Expand Down
2 changes: 1 addition & 1 deletion source/djLifeCycle.pas
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ procedure TdjLifeCycle.CheckStopped;

constructor TdjLifeCycle.Create;
begin
inherited;
inherited Create;

// logging -----------------------------------------------------------------
{$IFDEF DARAJA_LOGGING}
Expand Down
2 changes: 1 addition & 1 deletion source/djServerBase.pas
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ implementation

constructor TdjServerBase.Create;
begin
inherited;
inherited Create;

// logging -----------------------------------------------------------------
{$IFDEF DARAJA_LOGGING}
Expand Down
2 changes: 1 addition & 1 deletion source/djWebComponent.pas
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ implementation

constructor TdjWebComponent.Create;
begin
inherited;
inherited Create;

// logging -----------------------------------------------------------------
{$IFDEF DARAJA_LOGGING}
Expand Down
2 changes: 1 addition & 1 deletion source/optional/djNCSALogHandler.pas
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ function DateTimeToNCSATime(const AValue: TDateTime; const AFS:

constructor TdjNCSALogHandler.Create;
begin
inherited;
inherited Create;

// logging -----------------------------------------------------------------
{$IFDEF DARAJA_LOGGING}
Expand Down
2 changes: 1 addition & 1 deletion source/optional/djStatisticsHandler.pas
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ implementation

constructor TdjStatisticsHandler.Create;
begin
inherited;
inherited Create;

FResponses2xx := TIdThreadSafeInt64.Create;
FResponses3xx := TIdThreadSafeInt64.Create;
Expand Down

0 comments on commit a2601bd

Please sign in to comment.