BUrl::IsValid(): Replace with a slightly better dummy impl

This commit is contained in:
Ingo Weinhold 2014-07-03 14:34:45 +02:00
parent c666db88ef
commit b04949711d
1 changed files with 2 additions and 2 deletions

View File

@ -476,8 +476,8 @@ BUrl::Fragment() const
bool
BUrl::IsValid() const
{
// TODO
return false;
// TODO: Implement for real!
return fHasProtocol && (fHasHost || fHasPath);
}