|
@@ -1292,9 +1292,9 @@ public class Main implements AntMain { |
|
|
// now, start printing the targets and their descriptions |
|
|
// now, start printing the targets and their descriptions |
|
|
final String lSep = System.getProperty("line.separator"); |
|
|
final String lSep = System.getProperty("line.separator"); |
|
|
// got a bit annoyed that I couldn't find a pad function |
|
|
// got a bit annoyed that I couldn't find a pad function |
|
|
String spaces = " "; |
|
|
|
|
|
|
|
|
StringBuilder spaces = new StringBuilder(" "); |
|
|
while (spaces.length() <= maxlen) { |
|
|
while (spaces.length() <= maxlen) { |
|
|
spaces += spaces; |
|
|
|
|
|
|
|
|
spaces.append(spaces); |
|
|
} |
|
|
} |
|
|
final StringBuilder msg = new StringBuilder(); |
|
|
final StringBuilder msg = new StringBuilder(); |
|
|
msg.append(heading).append(lSep).append(lSep); |
|
|
msg.append(heading).append(lSep).append(lSep); |
|
|