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:
Brett Porter 2006-02-19 18:16:39 +00:00
parent 67df2859aa
commit ff3e121129
1 changed files with 5 additions and 5 deletions

View File

@ -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);
}
}