Skip to content

Commit

Permalink
remove unneeded code
Browse files Browse the repository at this point in the history
  • Loading branch information
zamronypj committed Jul 8, 2019
1 parent 0c9c34a commit c890f1b
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 297 deletions.
123 changes: 0 additions & 123 deletions App/Implementations/Fcgi/Workers/BaseWorkerServerImpl.pas

This file was deleted.

56 changes: 0 additions & 56 deletions App/Implementations/Fcgi/Workers/ListenSockWorkerServerImpl.pas

This file was deleted.

58 changes: 0 additions & 58 deletions App/Implementations/Fcgi/Workers/TcpWorkerServerImpl.pas

This file was deleted.

55 changes: 0 additions & 55 deletions App/Implementations/Fcgi/Workers/UnixWorkerServerImpl.pas

This file was deleted.

4 changes: 2 additions & 2 deletions App/Implementations/SimpleFcgi/SimpleFastCGIAppImpl.pas
Expand Up @@ -60,7 +60,7 @@ implementation

uses

TcpWorkerServerImpl;
InetSocketSvrImpl;

(*!-----------------------------------------------
* constructor
Expand All @@ -83,7 +83,7 @@ implementation
);
begin
inherited create(
TTcpWorkerServer.create(hostname, port),
TInetSocketSvr.create(hostname, port),
container,
errHandler,
dispatcherInst
Expand Down
Expand Up @@ -55,7 +55,7 @@ implementation

uses

ListenSockWorkerServerImpl;
BoundSocketSvrImpl;

(*!-----------------------------------------------
* constructor
Expand Down
Expand Up @@ -58,7 +58,7 @@ implementation

uses

UnixWorkerServerImpl;
UnixSocketSvrImpl;

(*!-----------------------------------------------
* constructor
Expand All @@ -79,7 +79,7 @@ implementation
);
begin
inherited create(
TUnixWorkerServer.create(socketFilename),
TUnixSocketSvr.create(socketFilename),
container,
errHandler,
dispatcherInst
Expand Down

0 comments on commit c890f1b

Please sign in to comment.