Made toStringBuf() protected so that subclasses in other packages may
override it. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4269 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -37,7 +37,7 @@ public /* abstract */ class Credentials
|
|||||||
return buf.toString();
|
return buf.toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
internal function toStringBuf (buf :StringBuilder) :void
|
protected function toStringBuf (buf :StringBuilder) :void
|
||||||
{
|
{
|
||||||
buf.append("username=", _username);
|
buf.append("username=", _username);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -56,7 +56,7 @@ public class UsernamePasswordCreds extends Credentials
|
|||||||
}
|
}
|
||||||
|
|
||||||
// documentation inherited
|
// documentation inherited
|
||||||
override internal function toStringBuf (buf :StringBuilder) :void
|
override protected function toStringBuf (buf :StringBuilder) :void
|
||||||
{
|
{
|
||||||
super.toStringBuf(buf);
|
super.toStringBuf(buf);
|
||||||
buf.append(", password=", _password);
|
buf.append(", password=", _password);
|
||||||
|
|||||||
Reference in New Issue
Block a user