Can Cecen created KAFKA-10096:
---------------------------------
Summary: Remove unnecessary String.format call in
VersionConditionalTest.java
Key: KAFKA-10096
URL: https://issues.apache.org/jira/browse/KAFKA-10096
Project: Kafka
Issue Type: Improvement
Components: unit tests
Reporter: Can Cecen
n.b. This is a newbie ticket designed to be an introduction to contributing for
the assignee.
Since there is no format specified to String.format, we can remove it and just
append the line.
static void assertEquals(CodeBuffer buffer, String... lines) throws Exception {
StringWriter stringWriter = new StringWriter();
buffer.write(stringWriter);
StringBuilder expectedStringBuilder = new StringBuilder();
for (String line : lines) {
expectedStringBuilder.append(String.format(line));
}
--
This message was sent by Atlassian Jira
(v8.3.4#803005)