Remove this->

this-> is redundant when operating within a class member scope.  We
should aim to be consistent.

This change was done automatically with sed replace

Tested: Code compiles

Signed-off-by: Ed Tanous <edtanous@google.com>
Change-Id: If791e83e0bd5f84031e65156b7ea082ded8e158c
diff --git a/http/app.hpp b/http/app.hpp
index d3cf48c..b983bec 100644
--- a/http/app.hpp
+++ b/http/app.hpp
@@ -49,7 +49,7 @@
     {}
     ~App()
     {
-        this->stop();
+        stop();
     }
 
     App(const App&) = delete;