Remove #include of self

Through one of the refactors, webserver_common.hpp picked up an include
to itself, presumably when code was moved.  This doesn't cause any ill
effects, but is cruft that can be cleaned up.

Tested:
Code compiles.  No functional change to verify.

Signed-off-by: Ed Tanous <ed.tanous@intel.com>
Change-Id: Ie901baa3cfd88decdbecbad01c6b577d92d2441b
diff --git a/include/webserver_common.hpp b/include/webserver_common.hpp
index 684387d..079b17a 100644
--- a/include/webserver_common.hpp
+++ b/include/webserver_common.hpp
@@ -17,7 +17,6 @@
 
 #include "security_headers_middleware.hpp"
 #include "token_authorization_middleware.hpp"
-#include "webserver_common.hpp"
 
 using CrowApp = crow::App<crow::SecurityHeadersMiddleware,
                           crow::persistent_data::Middleware,