Index: trunk/extensions/Translate/MessageGroups.php |
— | — | @@ -267,10 +267,6 @@ |
268 | 268 | $this->mangler = StringMatcher::emptyMatcher(); |
269 | 269 | } |
270 | 270 | |
271 | | - public static function factory( $label, $id ) { |
272 | | - return null; |
273 | | - } |
274 | | - |
275 | 271 | /** |
276 | 272 | * Can be overwritten to retun false if something is wrong. |
277 | 273 | * @return bool |
— | — | @@ -283,12 +279,6 @@ |
284 | 280 | return null; |
285 | 281 | } |
286 | 282 | |
287 | | - // Unsupported stuff, just to satisfy the new interface |
288 | | - public function setConfiguration( $conf ) { } |
289 | | - public function getConfiguration() { } |
290 | | - |
291 | | - |
292 | | - public function getFFS() { return null; } |
293 | 283 | public function getTags( $type = null ) { |
294 | 284 | $tags = array( |
295 | 285 | 'optional' => $this->optional, |
— | — | @@ -309,6 +299,11 @@ |
310 | 300 | protected function isSourceLanguage( $code ) { |
311 | 301 | return $code === $this->getSourceLanguage(); |
312 | 302 | } |
| 303 | + |
| 304 | + // Unsupported stuff, just to satisfy the new interface |
| 305 | + public function setConfiguration( $conf ) { } |
| 306 | + public function getConfiguration() { } |
| 307 | + public function getFFS() { return null; } |
313 | 308 | } |
314 | 309 | |
315 | 310 | /** |