diff options
author | Markus Lehtonen <markus.lehtonen@linux.intel.com> | 2016-01-26 15:34:27 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-18 07:41:15 +0000 |
commit | 97617fd6755ffa25c058215ffb060cbb86240b44 (patch) | |
tree | 77d7cc37dcad0a9586e94da9c1851e4b55cca67f /bitbake/lib/bb/fetch2 | |
parent | 5a87d8c477ea829012785f2b284307c56f42787c (diff) | |
download | poky-97617fd6755ffa25c058215ffb060cbb86240b44.tar.gz |
bitbake: bb/cache: drop some unused arguments
Drop unused 'd' argument from the cache save methods, simplifying the
API.
(Bitbake rev: 81bc1f20662c39ee8db1da45b1e8c7eb64abacf3)
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/fetch2')
-rw-r--r-- | bitbake/lib/bb/fetch2/__init__.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py index c3dcfd2ccb..83122e856c 100644 --- a/bitbake/lib/bb/fetch2/__init__.py +++ b/bitbake/lib/bb/fetch2/__init__.py | |||
@@ -515,13 +515,13 @@ def fetcher_init(d): | |||
515 | if hasattr(m, "init"): | 515 | if hasattr(m, "init"): |
516 | m.init(d) | 516 | m.init(d) |
517 | 517 | ||
518 | def fetcher_parse_save(d): | 518 | def fetcher_parse_save(): |
519 | _checksum_cache.save_extras(d) | 519 | _checksum_cache.save_extras() |
520 | 520 | ||
521 | def fetcher_parse_done(d): | 521 | def fetcher_parse_done(): |
522 | _checksum_cache.save_merge(d) | 522 | _checksum_cache.save_merge() |
523 | 523 | ||
524 | def fetcher_compare_revisions(d): | 524 | def fetcher_compare_revisions(): |
525 | """ | 525 | """ |
526 | Compare the revisions in the persistant cache with current values and | 526 | Compare the revisions in the persistant cache with current values and |
527 | return true/false on whether they've changed. | 527 | return true/false on whether they've changed. |