Skip to content

Commit

Permalink
bugfix: add newlines between combined lines
Browse files Browse the repository at this point in the history
  • Loading branch information
angryziber committed Dec 18, 2022
1 parent 5cd2882 commit 9cabaa1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/net/azib/ipscan/feeders/FileFeeder.java
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ private String readLines(BufferedReader fileReader, int num) throws IOException
StringBuilder sb = new StringBuilder();
String fileLine;
while ((fileLine = fileReader.readLine()) != null) {
sb.append(fileLine);
sb.append(fileLine).append("\n");
index++;
if (index > num) break;
}
Expand Down

0 comments on commit 9cabaa1

Please sign in to comment.