Enable clang code format

Change-Id: Ia899858c11cff6e4fa26b820b35b1e5dca1b57df
Signed-off-by: Adriana Kobylak <anoo@us.ibm.com>
diff --git a/download_manager.hpp b/download_manager.hpp
index 2ee03fb..30e0b73 100644
--- a/download_manager.hpp
+++ b/download_manager.hpp
@@ -20,27 +20,25 @@
  */
 class Download : public DownloadInherit
 {
-    public:
-        /** @brief Constructs Download Software Manager
-         *
-         * @param[in] bus       - The Dbus bus object
-         * @param[in] objPath   - The Dbus object path
-         */
-        Download(sdbusplus::bus::bus& bus,
-                const std::string& objPath) : DownloadInherit(
-                    bus, (objPath).c_str()) {};
+  public:
+    /** @brief Constructs Download Software Manager
+     *
+     * @param[in] bus       - The Dbus bus object
+     * @param[in] objPath   - The Dbus object path
+     */
+    Download(sdbusplus::bus::bus& bus, const std::string& objPath) :
+        DownloadInherit(bus, (objPath).c_str()){};
 
-        /**
-         * @brief Download the specified image via TFTP
-         *
-         * @param[in] fileName      - The name of the file to transfer.
-         * @param[in] serverAddress - The TFTP Server IP Address.
-         **/
-        void downloadViaTFTP(std::string fileName,
-                             std::string serverAddress) override;
+    /**
+     * @brief Download the specified image via TFTP
+     *
+     * @param[in] fileName      - The name of the file to transfer.
+     * @param[in] serverAddress - The TFTP Server IP Address.
+     **/
+    void downloadViaTFTP(std::string fileName,
+                         std::string serverAddress) override;
 };
 
 } // namespace manager
 } // namespace software
 } // namespace phosphor
-