Profile: Add a blank line before each peer section

This is purely a cosmetic change in the generated config files.

Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
Samuel Holland 2017-07-29 17:40:36 -05:00
parent 748d780a47
commit 85f1d4f1d3

View File

@ -59,7 +59,7 @@ public class Profile {
public String toString() {
StringBuilder sb = new StringBuilder().append(iface.toString());
for (Peer peer : peers)
sb.append(peer.toString());
sb.append('\n').append(peer.toString());
return sb.toString();
}
}