Skip to content
Snippets Groups Projects
Commit 2eecf160 authored by Leroy Rügemer's avatar Leroy Rügemer
Browse files

revert 071cbc

black/whitelist still used in genjava
commit broke generation as it only tried whitelisted
instead of all if we gave [] as input
parent 071cbcc7
Branches
No related tags found
No related merge requests found
......@@ -64,8 +64,9 @@ def index_message_package_dependencies_from_local_environment(package_name_list=
# The following returns: A list of tuples containing the relative path and a ``Package`` object,
sorted_package_tuples = catkin_pkg.topological_order.topological_order_packages(
packages=dict(message_packages.values()),
whitelisted=message_package_whitelist,
blacklisted=message_package_blacklist,
whitelisted=None,
blacklisted=None,
underlay_packages=dict(all_packages.values()))
# print("%s" % [p.name for (unused_relative_path, p) in sorted_package_tuples])
return sorted_package_tuples
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment