forked from I2P_Developers/i2p.i2p
Console: Fix missing newlines in readme output
This commit is contained in:
@ -76,6 +76,7 @@ public class ResourceHelper extends HelperBase {
|
||||
int i = 0;
|
||||
while ( (line = in.readLine()) != null) {
|
||||
buf.append(line);
|
||||
buf.append('\n');
|
||||
if (_maxLines > 0 && ++i >= _maxLines)
|
||||
break;
|
||||
}
|
||||
|
Reference in New Issue
Block a user