File tree Expand file tree Collapse file tree 4 files changed +13
-4
lines changed
kernel/src/main/java/com/itextpdf/kernel Expand file tree Collapse file tree 4 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 14
14
15
15
class DocTrueTypeFont extends TrueTypeFont implements DocFontProgram {
16
16
17
- private PdfStream fontFile ;
17
+ private static final long serialVersionUID = 4611535787920619829L ;
18
+
19
+ private PdfStream fontFile ;
18
20
private PdfName fontFileName ;
19
21
private PdfName subtype ;
20
22
Original file line number Diff line number Diff line change 8
8
9
9
public class Type3FontProgram extends FontProgram {
10
10
11
- private final Map <Integer , Type3Glyph > type3Glyphs = new HashMap <>();
11
+ private static final long serialVersionUID = 1027076515537536993L ;
12
+
13
+ private final Map <Integer , Type3Glyph > type3Glyphs = new HashMap <>();
12
14
private boolean colorized = false ;
13
15
14
16
Original file line number Diff line number Diff line change 27
27
* @author Kazuya Ujihara
28
28
*/
29
29
public class PdfEncryption extends PdfObjectWrapper <PdfDictionary > {
30
- private static final int StandardEncryption40 = 2 ;
30
+
31
+ private static final long serialVersionUID = -6864863940808467156L ;
32
+
33
+ private static final int StandardEncryption40 = 2 ;
31
34
private static final int StandardEncryption128 = 3 ;
32
35
private static final int Aes128 = 4 ;
33
36
private static final int Aes256 = 5 ;
Original file line number Diff line number Diff line change 10
10
11
11
public class PdfName extends PdfPrimitiveObject implements Comparable <PdfName > {
12
12
13
- private static final byte [] space = ByteUtils .getIsoBytes ("#20" ); // ' '
13
+ private static final long serialVersionUID = 7493154668111961953L ;
14
+
15
+ private static final byte [] space = ByteUtils .getIsoBytes ("#20" ); // ' '
14
16
private static final byte [] percent = ByteUtils .getIsoBytes ("#25" ); // '%'
15
17
private static final byte [] leftParenthesis = ByteUtils .getIsoBytes ("#28" ); // '('
16
18
private static final byte [] rightParenthesis = ByteUtils .getIsoBytes ("#29" ); // ')'
You can’t perform that action at this time.
0 commit comments