From 1bf05bd3b0f31f7d254caba9b388924698b48417 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Thu, 20 Oct 2011 17:13:53 +0000 Subject: [PATCH] Removed deprecated getFullPath(); no callers --- includes/filerepo/File.php | 12 ------------ includes/filerepo/LocalFile.php | 1 - 2 files changed, 13 deletions(-) diff --git a/includes/filerepo/File.php b/includes/filerepo/File.php index afbf13ec52..f31b72fa02 100644 --- a/includes/filerepo/File.php +++ b/includes/filerepo/File.php @@ -271,18 +271,6 @@ abstract class File { return $this->path; } - /** - * Alias for getPath() - * - * @deprecated since 1.18 Use getPath(). - * - * @return string - */ - public function getFullPath() { - wfDeprecated( __METHOD__ ); - return $this->getPath(); - } - /** * Return the width of the image. Returns false if the width is unknown * or undefined. diff --git a/includes/filerepo/LocalFile.php b/includes/filerepo/LocalFile.php index 70ce9f061a..326d73cae4 100644 --- a/includes/filerepo/LocalFile.php +++ b/includes/filerepo/LocalFile.php @@ -872,7 +872,6 @@ class LocalFile extends File { } } - /** getFullPath inherited */ /** getHashPath inherited */ /** getRel inherited */ /** getUrlRel inherited */ -- 2.20.1