From 174dd5dd9e49b3a55e588b6f460fd029a6074511 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 15 Feb 2018 18:42:47 +0100 Subject: [PATCH] urlmatch: Remove performance FIXME --- qutebrowser/utils/urlmatch.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/qutebrowser/utils/urlmatch.py b/qutebrowser/utils/urlmatch.py index f15ab45fe..4bf02a3b8 100644 --- a/qutebrowser/utils/urlmatch.py +++ b/qutebrowser/utils/urlmatch.py @@ -229,8 +229,6 @@ class UrlPattern: return True # Match 'google.com' with 'google.com/' - # FIXME use the no-copy approach Chromium has in - # URLPattern::MatchesPath for performance? if path + '/*' == self._path: return True