service: Clean up apm/lm/applet_oe/controller/sm ctor/dtor.

This commit is contained in:
bunnei
2017-12-28 15:27:30 -05:00
parent 6d0751cd00
commit 82fb80da76
10 changed files with 10 additions and 20 deletions
-2
View File
@@ -16,7 +16,5 @@ AppletOE::AppletOE() : ServiceFramework("appletOE") {
RegisterHandlers(functions);
}
AppletOE::~AppletOE() = default;
} // namespace AM
} // namespace Service
+2 -2
View File
@@ -11,8 +11,8 @@ namespace AM {
class AppletOE final : public ServiceFramework<AppletOE> {
public:
explicit AppletOE();
~AppletOE();
AppletOE();
~AppletOE() = default;
};
} // namespace AM