Hello,
I do not know if this is the right place to submit remarks about lines of code which seem to do nothing.
Example
from itext-paulo-139.zip:
in ColumnText.java:
public void setSimpleColumn(float llx, float lly, float urx, float ury) {
/*1*/ float leftLine[] = new float[4];
/*2*/ float rightLine[] = new float[4];
leftX = Math.min(llx, urx);
maxY = Math.max(lly, ury);
minY = Math.min(lly, ury);
rightX = Math.max(llx, urx);
yLine = maxY;
rectangularWidth = rightX - leftX;
}lines /*1*/ and /*2*/ introduce local variables, which are not used further on in this method.
Thanks for this product. Thanks for the time anyone would spend on this.
Herman Vierendeels [EMAIL PROTECTED] Ternat Belgium
------------------------------------------------------- This SF.net email is sponsored by: IT Product Guide on ITManagersJournal Use IT products in your business? Tell us what you think of them. Give us Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more http://productguide.itmanagersjournal.com/guidepromo.tmpl _______________________________________________ iText-questions mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/itext-questions
