diff options
author | Kurt Zenker <kz@openoffice.org> | 2003-12-11 10:33:04 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2003-12-11 10:33:04 +0000 |
commit | 09a9196cd61eddbe76eec72b2cd3c8ca9f8bdcf2 (patch) | |
tree | 476042b16e1a6b34de3037fff64efc0757311765 /qadevOOo/runner/stats | |
parent | fefc2a7ccb61a42fcd62056d003b8950f10b0d68 (diff) |
INTEGRATION: CWS qadev14 (1.3.2); FILE MERGED
2003/11/28 15:16:03 sg 1.3.2.1: #114147#CHG: removed wrong String compare
Diffstat (limited to 'qadevOOo/runner/stats')
-rw-r--r-- | qadevOOo/runner/stats/Summarizer.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qadevOOo/runner/stats/Summarizer.java b/qadevOOo/runner/stats/Summarizer.java index adff7fca6c2b..3ebf4aaf8d1a 100644 --- a/qadevOOo/runner/stats/Summarizer.java +++ b/qadevOOo/runner/stats/Summarizer.java @@ -2,9 +2,9 @@ * * $RCSfile: Summarizer.java,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change:$Date: 2003-11-18 16:17:09 $ + * last change:$Date: 2003-12-11 11:33:04 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -76,7 +76,7 @@ public class Summarizer { * gets the state for a SuperEntry according to its subentries */ public void summarizeUp(DescEntry entry) { - if ( ( entry.State != null ) && entry.State != "UNKNOWN") return; + if ( ( entry.State != null ) && !entry.State.equals("UNKNOWN")) return; int count = entry.SubEntryCount; int knownIssues = 0; Vector failures = new Vector(); |