Code Duplication    Length = 2-2 lines in 2 locations

web_interface/astpp/system/libraries/Fpdf.php 2 locations

@@ 597-598 (lines=2) @@
594
	$this->FontSizePt = $size;
595
	$this->FontSize = $size / $this->k;
596
	$this->CurrentFont = &$this->fonts[$fontkey];
597
	if ($this->page > 0)
598
		$this->_out(sprintf('BT /F%d %.2F Tf ET', $this->CurrentFont['i'], $this->FontSizePt));
599
}
600
601
function SetFontSize($size)
@@ 608-609 (lines=2) @@
605
		return;
606
	$this->FontSizePt = $size;
607
	$this->FontSize = $size / $this->k;
608
	if ($this->page > 0)
609
		$this->_out(sprintf('BT /F%d %.2F Tf ET', $this->CurrentFont['i'], $this->FontSizePt));
610
}
611
612
function AddLink()