Code Duplication    Length = 2-2 lines in 2 locations

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

@@ 679-680 (lines=2) @@
676
    $this->FontSize = $size / $this->k;
677
    $this->CurrentFont = &$this->fonts[$fontkey];
678
    if ($this->fonts[$fontkey]['type'] == 'TTF') { $this->unifontSubset = true; } else { $this->unifontSubset = false; }
679
    if ($this->page > 0) {
680
            $this->_out(sprintf('BT /F%d %.2F Tf ET', $this->CurrentFont['i'], $this->FontSizePt));
681
    }
682
    }
683
@@ 692-693 (lines=2) @@
689
    }
690
    $this->FontSizePt = $size;
691
    $this->FontSize = $size / $this->k;
692
    if ($this->page > 0) {
693
            $this->_out(sprintf('BT /F%d %.2F Tf ET', $this->CurrentFont['i'], $this->FontSizePt));
694
    }
695
    }
696