diff options
| author | Kurt <kurt.w.jung@gmail.com> | 2019-05-06 08:59:02 -0400 | 
|---|---|---|
| committer | Kurt <kurt.w.jung@gmail.com> | 2019-05-06 08:59:02 -0400 | 
| commit | 7e2fd5e62062f910ad6fe58dcca97a7e69b85bb3 (patch) | |
| tree | 700ce534766cc0c7397e5c1da95b28099918118c | |
| parent | bd6c576bfedb4b1a02d8232f9332244a4497df55 (diff) | |
Remove some ineffectual assignments as reported by goreportcard.com
| -rw-r--r-- | fpdf.go | 10 | ||||
| -rw-r--r-- | utf8fontfile.go | 4 | 
2 files changed, 7 insertions, 7 deletions
| @@ -1736,9 +1736,9 @@ func (f *Fpdf) addFontFromBytes(familyStr, styleStr string, jsonFileBytes, zFile  	if utf8Bytes != nil { -		if styleStr == "IB" { -			styleStr = "BI" -		} +		// if styleStr == "IB" { +		// 	styleStr = "BI" +		// }  		Type := "UTF8"  		reader := fileReader{readerPosition: 0, array: utf8Bytes} @@ -3995,8 +3995,8 @@ func (f *Fpdf) generateCIDFontMap(font *fontDefType, LastRune int) {  			previousKey = key  		}  		nextKey = key + cws -		ui := ws.getIndex("interval") -		ui = ui + 1 +		// ui := ws.getIndex("interval") +		// ui = ui + 1  		if ws.getIndex("interval") >= 0 {  			if cws > 3 {  				isInterval = true diff --git a/utf8fontfile.go b/utf8fontfile.go index 964e919..0894701 100644 --- a/utf8fontfile.go +++ b/utf8fontfile.go @@ -863,8 +863,8 @@ func (utf *utf8FontFile) parseHMTXTable(numberOfHMetrics, numSymbols int, symbol  			}  		}  	} -	data := utf.getRange(start+numberOfHMetrics*4, numSymbols*2) -	arr = unpackUint16Array(data) +	// data := utf.getRange(start+numberOfHMetrics*4, numSymbols*2) +	// arr = unpackUint16Array(data)  	diff := numSymbols - numberOfHMetrics  	for pos := 0; pos < diff; pos++ {  		symbol := pos + numberOfHMetrics | 
