Skip to content

Commit

Permalink
checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
Ray Mattingly committed Sep 14, 2023
1 parent f7c4517 commit da74c11
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2197,7 +2197,7 @@ public static SlowLogParams getSlowLogParams(Message message, boolean slowLogSca
}

/**
* Convert a List<NameBytesPair> to a more readable CSV
* Convert a list of NameBytesPair to a more readable CSV
*/
public static String convertAttributesToCsv(List<NameBytesPair> attributes) {
if (attributes.isEmpty()) {
Expand All @@ -2208,7 +2208,7 @@ public static String convertAttributesToCsv(List<NameBytesPair> attributes) {
}

/**
* Convert a Map<String, byte[]> to a more readable Map<String, String>
* Convert a map of byte array attributes to a more readable map of binary string representations
*/
public static Map<String, String> deserializeAttributes(Map<String, byte[]> attributes) {
return attributes.entrySet().stream().collect(
Expand Down

0 comments on commit da74c11

Please sign in to comment.