Skip to content

Commit

Permalink
No need to mark private method final
Browse files Browse the repository at this point in the history
  • Loading branch information
stevejagodzinski committed Oct 25, 2021
1 parent 30d8c3f commit d79d267
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/HttpEventCollectorUnitTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ private void readConf(final String conf) {
}
}

private final String repeat(String str, int times) {
private String repeat(String str, int times) {
StringBuilder sb = new StringBuilder();
for (int i = 0 ; i < times ; i ++)
sb.append(str);
Expand Down

0 comments on commit d79d267

Please sign in to comment.