Skip to content

Commit 60098d0

Browse files
Replaced StringBuffer with StringBuilder in PageCommand (#540)
Co-authored-by: opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com> Co-authored-by: LSantha <LSantha@users.noreply.github.com>
1 parent fca8c2c commit 60098d0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cli/src/commands/org/jnode/command/system/PageCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ private void searchForwards() throws IOException {
365365
* @throws IOException
366366
*/
367367
private String readLine(int ch) throws IOException {
368-
StringBuffer sb = new StringBuffer();
368+
StringBuilder sb = new StringBuilder();
369369
String line;
370370
do {
371371
sb.append((char) ch);

0 commit comments

Comments
 (0)