update_engine: Remove unused ext2_utils.h

This file is not used anymore.

BUG=None
TEST=FEATURES=test emerge-link update_engine.

Change-Id: I9fce8b912c7126f137db01060351d9278a7b43aa
Reviewed-on: https://chromium-review.googlesource.com/282359
Tested-by: Alex Deymo <deymo@chromium.org>
Reviewed-by: Don Garrett <dgarrett@chromium.org>
Commit-Queue: Alex Deymo <deymo@chromium.org>
diff --git a/payload_generator/ext2_utils.h b/payload_generator/ext2_utils.h
deleted file mode 100644
index fff9cc4..0000000
--- a/payload_generator/ext2_utils.h
+++ /dev/null
@@ -1,21 +0,0 @@
-// Copyright 2014 The Chromium OS Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef UPDATE_ENGINE_PAYLOAD_GENERATOR_EXT2_UTILS_H_
-#define UPDATE_ENGINE_PAYLOAD_GENERATOR_EXT2_UTILS_H_
-
-#include <ext2fs/ext2fs.h>
-
-// Utility class to close a file system.
-class ScopedExt2fsCloser {
- public:
-  explicit ScopedExt2fsCloser(ext2_filsys filsys) : filsys_(filsys) {}
-  ~ScopedExt2fsCloser() { ext2fs_close(filsys_); }
-
- private:
-  ext2_filsys filsys_;
-  DISALLOW_COPY_AND_ASSIGN(ScopedExt2fsCloser);
-};
-
-#endif  // UPDATE_ENGINE_PAYLOAD_GENERATOR_EXT2_UTILS_H_