avoid message call if not needed.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@21063 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
dwetzel 2005-04-06 19:45:32 +00:00
parent c7934d0763
commit 74da7a4720

View file

@ -353,8 +353,9 @@ static SEL appendStringSel = NULL;
//--------------------------------------------------------------------
-(NSString*)description
{
//OK
[self _compose];
if (!_flags.composed) {
[self _compose];
}
return _url;
};