Committed code improvements proposed by Jürg Lehni
http://grazia.helma.at/pipermail/helma-dev/2003-August/000330.html
This commit is contained in:
parent
99a0c1ea84
commit
331dc61787
1 changed files with 6 additions and 10 deletions
|
@ -31,6 +31,8 @@ public final class ResponseTrans implements Externalizable {
|
||||||
static final long serialVersionUID = -8627370766119740844L;
|
static final long serialVersionUID = -8627370766119740844L;
|
||||||
static final int INITIAL_BUFFER_SIZE = 2048;
|
static final int INITIAL_BUFFER_SIZE = 2048;
|
||||||
|
|
||||||
|
static final String newLine = System.getProperty("line.separator");
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the MIME content type of the response.
|
* Set the MIME content type of the response.
|
||||||
*/
|
*/
|
||||||
|
@ -236,7 +238,7 @@ public final class ResponseTrans implements Externalizable {
|
||||||
buffer = new StringBuffer(Math.max(str.length() + 100, INITIAL_BUFFER_SIZE));
|
buffer = new StringBuffer(Math.max(str.length() + 100, INITIAL_BUFFER_SIZE));
|
||||||
}
|
}
|
||||||
|
|
||||||
buffer.append(what.toString());
|
buffer.append(str);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -244,15 +246,9 @@ public final class ResponseTrans implements Externalizable {
|
||||||
* Utility function that appends a <br> to whatever is written.
|
* Utility function that appends a <br> to whatever is written.
|
||||||
*/
|
*/
|
||||||
public void writeln(Object what) {
|
public void writeln(Object what) {
|
||||||
if (buffer == null) {
|
this.write(what);
|
||||||
buffer = new StringBuffer(INITIAL_BUFFER_SIZE);
|
buffer.append("<br />");
|
||||||
}
|
buffer.append(newLine);
|
||||||
|
|
||||||
if (what != null) {
|
|
||||||
buffer.append(what.toString());
|
|
||||||
}
|
|
||||||
|
|
||||||
buffer.append("<br />\r\n");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue