Browse Source

Fix array declarator

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@271245 13f79535-47bb-0310-9956-ffa450edef68
master
Stephane Bailliez 23 years ago
parent
commit
81973008d1
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/main/org/apache/tools/mail/MailMessage.java

+ 1
- 1
src/main/org/apache/tools/mail/MailMessage.java View File

@@ -476,7 +476,7 @@ class MailPrintStream extends PrintStream {
lastChar = b;
}

public void write(byte buf[], int off, int len) {
public void write(byte[] buf, int off, int len) {
for (int i = 0; i < len; i++) {
write(buf[off + i]);
}


Loading…
Cancel
Save