Removed useless sleep() in example

This commit is contained in:
pd 2008-08-31 19:25:24 +02:00
parent c3f146913b
commit 050170173a

View file

@ -20,7 +20,6 @@ int32_t EchoServer::Random()
std::string EchoServer::Hello(const std::string &name)
{
sleep (10);
return "Hello " + name + "!";
}