SpecialWatchlist: Remove old irrelevant comment
authorBartosz Dziewoński <matma.rex@gmail.com>
Fri, 11 Oct 2013 21:01:57 +0000 (23:01 +0200)
committerReedy <reedy@wikimedia.org>
Sun, 13 Oct 2013 20:37:44 +0000 (20:37 +0000)
The code it was commenting has been removed in r10652 in 2005…

Change-Id: I33846196c1f62800db2a37b6b03bdb47280af7d4

includes/specials/SpecialWatchlist.php

index 6987f6f..11632a3 100644 (file)
@@ -179,14 +179,6 @@ class SpecialWatchlist extends SpecialPage {
                        $conds[] = 'rc_timestamp > ' . $dbr->addQuotes( $dbr->timestamp( time() - intval( $values['days'] * 86400 ) ) );
                }
 
-               # If the watchlist is relatively short, it's simplest to zip
-               # down its entirety and then sort the results.
-
-               # If it's relatively long, it may be worth our while to zip
-               # through the time-sorted page list checking for watched items.
-
-               # Up estimate of watched items by 15% to compensate for talk pages...
-
                # Toggles
                if ( $values['hideOwn'] ) {
                        $conds[] = 'rc_user != ' . $user->getId();