diff --git a/fine-itext-old/src/com/fr/third/com/lowagie/text/rtf/style/RtfParagraphStyle.java b/fine-itext-old/src/com/fr/third/com/lowagie/text/rtf/style/RtfParagraphStyle.java index 713853c7d..9fe60e0b6 100755 --- a/fine-itext-old/src/com/fr/third/com/lowagie/text/rtf/style/RtfParagraphStyle.java +++ b/fine-itext-old/src/com/fr/third/com/lowagie/text/rtf/style/RtfParagraphStyle.java @@ -637,7 +637,7 @@ public class RtfParagraphStyle extends RtfFont { result.write(RtfParagraphStyle.SPACING_AFTER); result.write(intToByteArray(this.spacingAfter)); } - if(this.lineLeading > 0) { + if(this.lineLeading != 0) { result.write(RtfParagraph.LINE_SPACING); result.write(intToByteArray(this.lineLeading)); }