We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5348f88 commit 9762d1fCopy full SHA for 9762d1f
1 file changed
pkg/pdfcpu/info.go
@@ -97,12 +97,9 @@ func ensureInfoDict(ctx *model.Context) error {
97
98
now := types.DateString(time.Now())
99
100
- v := "pdfcpu " + model.VersionStr
101
-
102
if ctx.Info == nil {
103
104
d := types.NewDict()
105
- d.InsertString("Producer", v)
106
d.InsertString("CreationDate", now)
107
d.InsertString("ModDate", now)
108
@@ -127,7 +124,6 @@ func ensureInfoDict(ctx *model.Context) error {
127
124
128
125
d.Update("CreationDate", types.StringLiteral(now))
129
126
d.Update("ModDate", types.StringLiteral(now))
130
- d.Update("Producer", types.StringLiteral(v))
131
132
return nil
133
}
0 commit comments