Code Duplication    Length = 1-1 lines in 2 locations

src/wp-includes/pomo/po.php 2 locations

@@ 207-207 (lines=1) @@
204
		$po = array();
205
		if (!empty($entry->translator_comments)) $po[] = PO::comment_block($entry->translator_comments);
206
		if (!empty($entry->extracted_comments)) $po[] = PO::comment_block($entry->extracted_comments, '.');
207
		if (!empty($entry->references)) $po[] = PO::comment_block(implode(' ', $entry->references), ':');
208
		if (!empty($entry->flags)) $po[] = PO::comment_block(implode(", ", $entry->flags), ',');
209
		if ($entry->context) $po[] = 'msgctxt '.PO::poify($entry->context);
210
		$po[] = 'msgid '.PO::poify($entry->singular);
@@ 208-208 (lines=1) @@
205
		if (!empty($entry->translator_comments)) $po[] = PO::comment_block($entry->translator_comments);
206
		if (!empty($entry->extracted_comments)) $po[] = PO::comment_block($entry->extracted_comments, '.');
207
		if (!empty($entry->references)) $po[] = PO::comment_block(implode(' ', $entry->references), ':');
208
		if (!empty($entry->flags)) $po[] = PO::comment_block(implode(", ", $entry->flags), ',');
209
		if ($entry->context) $po[] = 'msgctxt '.PO::poify($entry->context);
210
		$po[] = 'msgid '.PO::poify($entry->singular);
211
		if (!$entry->is_plural) {