Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 269312 | Differences between
and this patch

Collapse All | Expand All

(-)pdftk-1.41.orig/java_libs/com/lowagie/text/pdf/PdfDate.java (-1 / +1 lines)
Lines 74-84 Link Here
74
public class PdfDate extends PdfString {
74
public class PdfDate extends PdfString {
75
    
75
    
76
    // ssteward; static builds of pdftk (Windows, gcc 3.3.1) would
76
    // ssteward; static builds of pdftk (Windows, gcc 3.3.1) would
77
    // omit this class because of its reference by reflection;
77
    // omit this class because of its reference by reflection;
78
    // this treatment ensures that ld will include it
78
    // this treatment ensures that ld will include it
79
    private static Class c1= gnu.java.locale.Calendar.class;
79
    private static Class c1= java.util.Calendar.class;
80
80
81
    private static final int dateSpace[] = {Calendar.YEAR, 4, 0, Calendar.MONTH, 2, -1, Calendar.DAY_OF_MONTH, 2, 0,
81
    private static final int dateSpace[] = {Calendar.YEAR, 4, 0, Calendar.MONTH, 2, -1, Calendar.DAY_OF_MONTH, 2, 0,
82
        Calendar.HOUR_OF_DAY, 2, 0, Calendar.MINUTE, 2, 0, Calendar.SECOND, 2, 0};
82
        Calendar.HOUR_OF_DAY, 2, 0, Calendar.MINUTE, 2, 0, Calendar.SECOND, 2, 0};
83
    
83
    
84
    // constructors
84
    // constructors

Return to bug 269312