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 3a224c5 commit 9be6b6aCopy full SHA for 9be6b6a
kernel/src/main/java/com/itextpdf/kernel/font/PdfFont.java
@@ -457,20 +457,6 @@ protected boolean isWrappedObjectMustBeIndirect() {
457
return true;
458
}
459
460
- /**
461
- * Creates a unique subset prefix to be added to the font name when the font is embedded and subset.
462
- *
463
- * @return the subset prefix
464
- */
465
- @Deprecated
466
- protected static String createSubsetPrefix() {
467
- StringBuilder s = new StringBuilder("");
468
- for (int k = 0; k < 6; ++k) {
469
- s.append((char) (Math.random() * 26 + 'A'));
470
- }
471
- return s + "+";
472
473
-
474
/**
475
* Adds a unique subset prefix to be added to the font name when the font is embedded and subset.
476
*
0 commit comments