diff options
Diffstat (limited to 'bitbake/lib/bb/cache.py')
| -rw-r--r-- | bitbake/lib/bb/cache.py | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/bitbake/lib/bb/cache.py b/bitbake/lib/bb/cache.py index c7f3b7ab71..f892d7dc32 100644 --- a/bitbake/lib/bb/cache.py +++ b/bitbake/lib/bb/cache.py | |||
| @@ -764,16 +764,6 @@ class MultiProcessCache(object): | |||
| 764 | 764 | ||
| 765 | self.cachedata = data | 765 | self.cachedata = data |
| 766 | 766 | ||
| 767 | def internSet(self, items): | ||
| 768 | new = set() | ||
| 769 | for i in items: | ||
| 770 | new.add(intern(i)) | ||
| 771 | return new | ||
| 772 | |||
| 773 | def compress_keys(self, data): | ||
| 774 | # Override in subclasses if desired | ||
| 775 | return | ||
| 776 | |||
| 777 | def create_cachedata(self): | 767 | def create_cachedata(self): |
| 778 | data = [{}] | 768 | data = [{}] |
| 779 | return data | 769 | return data |
| @@ -833,8 +823,6 @@ class MultiProcessCache(object): | |||
| 833 | self.merge_data(extradata, data) | 823 | self.merge_data(extradata, data) |
| 834 | os.unlink(f) | 824 | os.unlink(f) |
| 835 | 825 | ||
| 836 | self.compress_keys(data) | ||
| 837 | |||
| 838 | with open(self.cachefile, "wb") as f: | 826 | with open(self.cachefile, "wb") as f: |
| 839 | p = pickle.Pickler(f, -1) | 827 | p = pickle.Pickler(f, -1) |
| 840 | p.dump([data, self.__class__.CACHE_VERSION]) | 828 | p.dump([data, self.__class__.CACHE_VERSION]) |
