Followup to r49572: forgot to commit LocalRepo.php
authorRoan Kattouw <catrope@users.mediawiki.org>
Thu, 16 Apr 2009 20:47:47 +0000 (20:47 +0000)
committerRoan Kattouw <catrope@users.mediawiki.org>
Thu, 16 Apr 2009 20:47:47 +0000 (20:47 +0000)
includes/filerepo/LocalRepo.php

index 1ec1b9a..4014699 100644 (file)
@@ -10,10 +10,6 @@ class LocalRepo extends FSRepo {
        var $fileFromRowFactory = array( 'LocalFile', 'newFromRow' );
        var $oldFileFromRowFactory = array( 'OldLocalFile', 'newFromRow' );
 
-       function getMemcKey( $key ) {
-               return wfWikiID( $this->getSlaveDB() ) . ":{$key}";
-       }
-
        function newFileFromRow( $row ) {
                if ( isset( $row->img_name ) ) {
                        return call_user_func( $this->fileFromRowFactory, $row, $this );