diff options
author | Adarsh Singh <79402080+furiousluck@users.noreply.github.com> | 2021-10-14 21:48:02 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-14 12:18:02 -0400 |
commit | 48120c39228ead7941140be310580188c29b61c1 (patch) | |
tree | 14cb2d0ab35e28705581a42505b6d502ba8a1b63 /grc/core/platform.py | |
parent | d08452d671d0f73ac94114b9627b2d340e68c012 (diff) |
grc: Removed unused code in gnuradio/platform.py
Signed-off-by: Adarsh <singhadarsh100@gmail.com>
Diffstat (limited to 'grc/core/platform.py')
-rw-r--r-- | grc/core/platform.py | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/grc/core/platform.py b/grc/core/platform.py index 1064dc6ba2..cc825ec953 100644 --- a/grc/core/platform.py +++ b/grc/core/platform.py @@ -126,13 +126,7 @@ class Platform(Element): self.connection_templates.clear() self.cpp_connection_templates.clear() self._block_categories.clear() - - # # FIXME: remove this as soon as converter is stable - # from ..converter import Converter - # converter = Converter(self.config.block_paths, self.config.yml_block_cache) - # converter.run() - # logging.info('XML converter done.') - + with Cache(Constants.CACHE_FILE, version = self.config.version) as cache: for file_path in self._iter_files_in_block_path(path): |