git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@687323
13f79535-47bb-0310-9956-
ffa450edef68
RendererContext context;
context = super.createRendererContext(x, y, width, height, foreignAttributes);
context.setProperty(AFPRendererContextConstants.AFP_GRAYSCALE,
- Boolean.valueOf(!this.colorImages));
+ new Boolean(!this.colorImages));
return context;
}
RendererContext context = super.createRendererContext(
x, y, width, height, foreignAttributes);
context.setProperty(PCLRendererContextConstants.PCL_COLOR_CANVAS,
- Boolean.valueOf(this.useColorCanvas));
+ new Boolean(this.useColorCanvas));
return context;
}