Code Duplication    Length = 2-2 lines in 2 locations

includes/libraries/Pdf/Tfpdf/tfpdf.class.php 2 locations

@@ 665-666 (lines=2) @@
662
    $this->CurrentFont = &$this->fonts[$fontkey];
663
    if ($this->fonts[$fontkey]['type'] == 'TTF') { $this->unifontSubset = true; }
664
    else { $this->unifontSubset = false; }
665
    if ($this->page > 0)
666
        $this->_out(sprintf('BT /F%d %.2F Tf ET', $this->CurrentFont['i'], $this->FontSizePt));
667
}
668
669
function SetFontSize($size)
@@ 676-677 (lines=2) @@
673
        return;
674
    $this->FontSizePt = $size;
675
    $this->FontSize = $size / $this->k;
676
    if ($this->page > 0)
677
        $this->_out(sprintf('BT /F%d %.2F Tf ET', $this->CurrentFont['i'], $this->FontSizePt));
678
}
679
680
function AddLink()