Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cli/src/commands/org/jnode/command/system/PageCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ private void searchForwards() throws IOException {
* @throws IOException
*/
private String readLine(int ch) throws IOException {
StringBuffer sb = new StringBuffer();
StringBuilder sb = new StringBuilder();
String line;
do {
sb.append((char) ch);
Expand Down
Loading