Remove now superfluous load_fs_info_cache() (#131)
This method is now only called from one location in the code so put it's two lines of code there. Closes #131 - GParted hangs when non-named device is hung
This commit is contained in:
parent
52ed42de28
commit
e9d4a21bfb
|
@ -49,7 +49,6 @@ private:
|
|||
static bool not_initialised_then_error();
|
||||
static void set_commands_found();
|
||||
static const FS_Entry & get_cache_entry_by_path( const Glib::ustring & path );
|
||||
static void load_fs_info_cache(const std::vector<Glib::ustring>& paths);
|
||||
static bool run_blkid_load_cache(const std::vector<Glib::ustring>& paths);
|
||||
static void update_fs_info_cache_all_labels();
|
||||
static bool run_blkid_update_cache_one_label( FS_Entry & fs_entry );
|
||||
|
|
|
@ -54,7 +54,8 @@ std::vector<FS_Entry> FS_Info::fs_info_cache;
|
|||
void FS_Info::load_cache_for_paths(const std::vector<Glib::ustring>& paths)
|
||||
{
|
||||
set_commands_found();
|
||||
load_fs_info_cache(paths);
|
||||
fs_info_cache.clear();
|
||||
run_blkid_load_cache(paths);
|
||||
fs_info_cache_initialized = true;
|
||||
}
|
||||
|
||||
|
@ -206,13 +207,6 @@ const FS_Entry & FS_Info::get_cache_entry_by_path( const Glib::ustring & path )
|
|||
}
|
||||
|
||||
|
||||
void FS_Info::load_fs_info_cache(const std::vector<Glib::ustring>& paths)
|
||||
{
|
||||
fs_info_cache.clear();
|
||||
run_blkid_load_cache(paths);
|
||||
}
|
||||
|
||||
|
||||
bool FS_Info::run_blkid_load_cache(const std::vector<Glib::ustring>& paths)
|
||||
{
|
||||
// Parse blkid output line by line extracting mandatory field: path and optional
|
||||
|
|
Loading…
Reference in New Issue