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:
Dave Wetzel 2005-04-06 19:45:32 +00:00
parent 48282e559d
commit 3331c5b1bd

View file

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