Remove unused private "filterPage" function from specials/SpecialExport.php
[lhc/web/wiklou.git] / includes / specials / SpecialExport.php
index bce2a10..b9a44d4 100644 (file)
@@ -275,8 +275,7 @@ class SpecialExport extends SpecialPage {
                        $lb->closeAll();
                }
        }
-       
-       
+
        private function getPagesFromCategory( $title ) {
                global $wgContLang;
                
@@ -411,12 +410,5 @@ class SpecialExport extends SpecialPage {
                }
                return $pageSet;
        }
-       
-       /**
-        * Callback function to remove empty strings from the pages array.
-        */
-       private function filterPage( $page ) {
-               return $page !== '' && $page !== null;
-       }
 }