Skip to content

Commit 6fa5e0c

Browse files
committed
PDFBOX-6220: fix formatting
git-svn-id: https://svn.apache.org/repos/asf/pdfbox/trunk@1936385 13f79535-47bb-0310-9956-ffa450edef68
1 parent 2e7207b commit 6fa5e0c

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

fontbox/src/main/java/org/apache/fontbox/ttf/gsub/GsubWorkerForLatin.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,8 @@ private List<Integer> applyGsubFeature(ScriptFeature scriptFeature,
8686
List<Integer> originalGlyphs)
8787
{
8888
Set<List<Integer>> allGlyphIdsForSubstitution = scriptFeature.getAllGlyphIdsForSubstitution();
89-
if (allGlyphIdsForSubstitution.isEmpty()){
89+
if (allGlyphIdsForSubstitution.isEmpty())
90+
{
9091
LOG.debug("getAllGlyphIdsForSubstitution() for {} is empty",
9192
scriptFeature.getName());
9293
return originalGlyphs;

0 commit comments

Comments
 (0)