Skip to content

Commit

Permalink
Remove some stray debug statements.
Browse files Browse the repository at this point in the history
  • Loading branch information
cgruber committed Jan 10, 2019
1 parent a91e052 commit b7a63ff
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions maven/utils.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ def _encode_nested(dict):
for nested_key, nested_value in nested_dict.items():
nested_encoded_list += ["%s%s%s" % (nested_key, _DICT_ENCODING_SEPARATOR, nested_value)]
result[key] = nested_encoded_list
print("Encoded %s as %s" % (dict, result))
return result

# Decodes a dict(string->list(string)) into a dict(string->dict(string->string)) by splitting the nested string using
Expand All @@ -56,7 +55,6 @@ def _decode_nested(dict):
nested_key, nested_value = encoded_item.split(_DICT_ENCODING_SEPARATOR)
nested_dict[nested_key] = nested_value
result[key] = nested_dict
print("Decoded %s as %s" % (dict, result))
return result

dicts = struct(
Expand Down

0 comments on commit b7a63ff

Please sign in to comment.