be more explicit about the references to the outer class to allow compilation against the JDK 5 class library.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@378937 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
67df2859aa
commit
ff3e121129
|
@ -2278,27 +2278,27 @@ public class StrBuilder implements Cloneable {
|
|||
|
||||
/** @inheritdoc */
|
||||
public void write(int c) {
|
||||
append((char) c);
|
||||
StrBuilder.this.append((char) c);
|
||||
}
|
||||
|
||||
/** @inheritdoc */
|
||||
public void write(char[] cbuf) {
|
||||
append(cbuf);
|
||||
StrBuilder.this.append(cbuf);
|
||||
}
|
||||
|
||||
/** @inheritdoc */
|
||||
public void write(char[] cbuf, int off, int len) {
|
||||
append(cbuf, off, len);
|
||||
StrBuilder.this.append(cbuf, off, len);
|
||||
}
|
||||
|
||||
/** @inheritdoc */
|
||||
public void write(String str) {
|
||||
append(str);
|
||||
StrBuilder.this.append(str);
|
||||
}
|
||||
|
||||
/** @inheritdoc */
|
||||
public void write(String str, int off, int len) {
|
||||
append(str, off, len);
|
||||
StrBuilder.this.append(str, off, len);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue