Skip to content

Commit

Permalink
Removed print statements from buffer interface (ros#530)
Browse files Browse the repository at this point in the history
  • Loading branch information
jlunenburg authored Apr 5, 2022
1 parent 7f9946e commit f3e6990
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions tf2_ros/src/tf2_ros/buffer_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,14 +241,11 @@ def convert(a, b_type):
#check if an efficient conversion function between the types exists
try:
f = c.get_convert((type(a), b_type))
print("efficient copy")
return f(a)
except TypeException:
if type(a) == b_type:
print("deep copy")
return deepcopy(a)

f_to = c.get_to_msg(type(a))
f_from = c.get_from_msg(b_type)
print("message copy")
return f_from(f_to(a))

0 comments on commit f3e6990

Please sign in to comment.