Skip to content

Commit 2007db2

Browse files
committed
PDFBOX-2941: fix status bar message
git-svn-id: https://svn.apache.org/repos/asf/pdfbox/trunk@1925659 13f79535-47bb-0310-9956-ffa450edef68
1 parent 9a8de78 commit 2007db2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

debugger/src/main/java/org/apache/pdfbox/debugger/ui/LogDialog.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,12 +165,12 @@ private void updateStatusBar()
165165

166166
if (exceptionCount > 0)
167167
{
168-
infos.add(exceptionCount + " exception" + (errorCount > 1 ? "s" : ""));
168+
infos.add(exceptionCount + " exception" + (exceptionCount > 1 ? "s" : ""));
169169
}
170170

171171
if (fatalCount > 0)
172172
{
173-
infos.add(errorCount + " error" + (errorCount > 1 ? "s" : ""));
173+
infos.add(fatalCount + " fatal error" + (fatalCount > 1 ? "s" : ""));
174174
}
175175

176176
if (errorCount > 0)

0 commit comments

Comments
 (0)