Author: tilman Date: Sun Aug 18 11:55:01 2024 New Revision: 1919987 URL: http://svn.apache.org/viewvc?rev=1919987&view=rev Log: PDFBOX-5869: break long line
Modified: pdfbox/branches/3.0/fontbox/src/test/java/org/apache/fontbox/ttf/gsub/GSUBTablePrintUtil.java Modified: pdfbox/branches/3.0/fontbox/src/test/java/org/apache/fontbox/ttf/gsub/GSUBTablePrintUtil.java URL: http://svn.apache.org/viewvc/pdfbox/branches/3.0/fontbox/src/test/java/org/apache/fontbox/ttf/gsub/GSUBTablePrintUtil.java?rev=1919987&r1=1919986&r2=1919987&view=diff ============================================================================== --- pdfbox/branches/3.0/fontbox/src/test/java/org/apache/fontbox/ttf/gsub/GSUBTablePrintUtil.java (original) +++ pdfbox/branches/3.0/fontbox/src/test/java/org/apache/fontbox/ttf/gsub/GSUBTablePrintUtil.java Sun Aug 18 11:55:01 2024 @@ -43,7 +43,10 @@ public class GSUBTablePrintUtil public void printCharacterToGlyph(GsubData gsubData, CmapLookup cmap) { System.err.println( - "Format:\n<Serial no.>.) <Space separated characters to be replaced> : RawUnicode: [<Space separated unicode representation of each character to be replaced in hexadecimal>] : <The compound character> : <The GlyphId with which these characters are replaced>"); + "Format:\n<Serial no.>.) <Space separated characters to be replaced> : " + + "RawUnicode: [<Space separated unicode representation of each character " + + "to be replaced in hexadecimal>] : <The compound character> : " + + "<The GlyphId with which these characters are replaced>"); Map<Integer, List<Integer>> rawGSubTableData = new HashMap<>(); for (String featureName : gsubData.getSupportedFeatures())