Remove dot import of core in colorspace.go

This commit is contained in:
Gunnsteinn Hall 2019-01-11 00:02:30 +00:00
parent cd9a2c45e9
commit f56ca6aae3
2 changed files with 230 additions and 229 deletions

File diff suppressed because it is too large Load Diff

View File

@ -10,15 +10,16 @@ import (
)
// Errors when parsing/loading data in PDF.
// TODO(gunnsth): Unexport errors.
var (
ErrRequiredAttributeMissing = errors.New("required attribute missing")
ErrInvalidAttribute = errors.New("invalid attribute")
ErrTypeCheck = errors.New("type check")
//ErrRangeError = errors.New("range check error")
ErrEncrypted = errors.New("file needs to be decrypted first")
ErrNoFont = errors.New("font not defined")
ErrFontNotSupported = errors.New("unsupported font")
ErrType1CFontNotSupported = errors.New("Type1C fonts are not currently supported")
ErrType3FontNotSupported = errors.New("Type3 fonts are not currently supported")
ErrTTCmapNotSupported = errors.New("unsupported TrueType cmap format")
errRangeError = errors.New("range check error")
ErrEncrypted = errors.New("file needs to be decrypted first")
ErrNoFont = errors.New("font not defined")
ErrFontNotSupported = errors.New("unsupported font")
ErrType1CFontNotSupported = errors.New("Type1C fonts are not currently supported")
ErrType3FontNotSupported = errors.New("Type3 fonts are not currently supported")
ErrTTCmapNotSupported = errors.New("unsupported TrueType cmap format")
)