Skip to content

Commit bf9ed2d

Browse files
authored
Merge pull request #26721 from nextcloud/fix/noid/final-private
private cannot be final
2 parents 8238abd + bb32880 commit bf9ed2d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/private/FullTextSearch/Model/IndexDocument.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -722,7 +722,7 @@ final public function getExcerpts(): array {
722722
* @param string $excerpt
723723
* @return string
724724
*/
725-
final private function cleanExcerpt(string $excerpt): string {
725+
private function cleanExcerpt(string $excerpt): string {
726726
$excerpt = str_replace("\\n", ' ', $excerpt);
727727
$excerpt = str_replace("\\r", ' ', $excerpt);
728728
$excerpt = str_replace("\\t", ' ', $excerpt);

0 commit comments

Comments
 (0)