Index: trunk/extensions/CodeReview/backend/CodeRevision.php |
— | — | @@ -76,7 +76,6 @@ |
77 | 77 | /** |
78 | 78 | * Like getId(), but returns the result as a string, including prefix, |
79 | 79 | * i.e. "r123" instead of 123. |
80 | | - * May be called statically if you pass the $id in. |
81 | 80 | */ |
82 | 81 | public function getIdString( $id = null ) { |
83 | 82 | if ( $id === null ) { |
Index: trunk/extensions/CodeReview/backend/CodeRepository.php |
— | — | @@ -175,7 +175,6 @@ |
176 | 176 | /** |
177 | 177 | * Returns the supplied revision ID as a string ready for output, including the |
178 | 178 | * appropriate (localisable) prefix (e.g. "r123" instead of 123). |
179 | | - * May be called statically. |
180 | 179 | */ |
181 | 180 | public function getRevIdString( $id ) { |
182 | 181 | return wfMsg( 'code-rev-id', $id ); |
— | — | @@ -189,7 +188,6 @@ |
190 | 189 | * confusing (e.g. in e-mails, page titles etc.). If only one repository is |
191 | 190 | * defined then this returns the same as getRevIdString() as there |
192 | 191 | * is no ambiguity. |
193 | | - * May NOT be called statically. |
194 | 192 | */ |
195 | 193 | public function getRevIdStringUnique( $id ) { |
196 | 194 | $id = wfMsg( 'code-rev-id', $id ); |