Index: branches/FileBackend/phase3/includes/upload/UploadBase.php |
— | — | @@ -200,39 +200,6 @@ |
201 | 201 | } |
202 | 202 | |
203 | 203 | /** |
204 | | - * Append a file to the Repo file |
205 | | - * |
206 | | - * @deprecated since 1.19 |
207 | | - * |
208 | | - * @param $srcPath String: path to source file |
209 | | - * @param $toAppendPath String: path to the Repo file that will be appended to. |
210 | | - * @return Status Status |
211 | | - */ |
212 | | - protected function appendToUploadFile( $srcPath, $toAppendPath ) { |
213 | | - wfDeprecated( __METHOD__, '1.19' ); |
214 | | - |
215 | | - $repo = RepoGroup::singleton()->getLocalRepo(); |
216 | | - $status = $repo->append( $srcPath, $toAppendPath ); |
217 | | - return $status; |
218 | | - } |
219 | | - |
220 | | - /** |
221 | | - * Finish appending to the Repo file |
222 | | - * |
223 | | - * @deprecated since 1.19 |
224 | | - * |
225 | | - * @param $toAppendPath String: path to the Repo file that will be appended to. |
226 | | - * @return Status Status |
227 | | - */ |
228 | | - protected function appendFinish( $toAppendPath ) { |
229 | | - wfDeprecated( __METHOD__, '1.19' ); |
230 | | - |
231 | | - $repo = RepoGroup::singleton()->getLocalRepo(); |
232 | | - $status = $repo->appendFinish( $toAppendPath ); |
233 | | - return $status; |
234 | | - } |
235 | | - |
236 | | - /** |
237 | 204 | * @param $srcPath String: the source path |
238 | 205 | * @return the real path if it was a virtual URL |
239 | 206 | */ |