diff options
Diffstat (limited to 'indra/newview/llurlwhitelist.cpp')
-rw-r--r-- | indra/newview/llurlwhitelist.cpp | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/indra/newview/llurlwhitelist.cpp b/indra/newview/llurlwhitelist.cpp index d582d2d19f..65f7229abf 100644 --- a/indra/newview/llurlwhitelist.cpp +++ b/indra/newview/llurlwhitelist.cpp @@ -200,22 +200,4 @@ bool LLUrlWhiteList::getNext ( LLString& valueOut ) bool LLUrlWhiteList::containsMatch ( const LLString& patternIn ) { return false; - - // CP: removed since they're not useful without Mozilla enabled - #if LL_MOZILLA_ENABLED - LLString pattern = url_cleanup(patternIn); - - if (pattern.empty()) return false; - - LLStringListIter iter = std::find ( mUrlList.begin (), mUrlList.end (), pattern ); - - if ( iter != mUrlList.end () ) - { - return true; - } - else - { - return false; - }; - #endif } |