Skip to content

Commit

Permalink
fixed spotless errors
Browse files Browse the repository at this point in the history
  • Loading branch information
¨Claude committed Jan 14, 2025
1 parent cd2650a commit b444b44
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ default void writeToS3WithKey(final String objectKey, final byte[] testDataBytes
* {@link OffsetManager}
*/
default String writeToS3(final String topic, final byte[] testDataBytes, final String partitionId) {
final String objectKey = org.apache.commons.lang3.StringUtils.defaultIfBlank(getS3Prefix(), "") + topic
+ "-" + partitionId + "-" + System.currentTimeMillis() + ".txt";
final String objectKey = org.apache.commons.lang3.StringUtils.defaultIfBlank(getS3Prefix(), "") + topic + "-"
+ partitionId + "-" + System.currentTimeMillis() + ".txt";
writeToS3WithKey(objectKey, testDataBytes);
return objectKey;

Expand Down

0 comments on commit b444b44

Please sign in to comment.