diff options
author | Kurt Zenker <kz@openoffice.org> | 2003-11-18 15:13:33 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2003-11-18 15:13:33 +0000 |
commit | 11bd40b5ed7cdbc6e75c21b2b98f91300341caab (patch) | |
tree | 4aef55346e4f92099301103bc01834b7305aed49 /qadevOOo/runner/basicrunner | |
parent | 54d65738c22368ba55d14e101b03968f1efb61b5 (diff) |
INTEGRATION: CWS qadev13 (1.1.34); FILE MERGED
2003/11/07 14:54:44 sg 1.1.34.1: #113007#CHG: fixed expensive constructor bug
Diffstat (limited to 'qadevOOo/runner/basicrunner')
-rw-r--r-- | qadevOOo/runner/basicrunner/basichelper/Filter.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qadevOOo/runner/basicrunner/basichelper/Filter.java b/qadevOOo/runner/basicrunner/basichelper/Filter.java index 5ae31f358337..901e6e3a17da 100644 --- a/qadevOOo/runner/basicrunner/basichelper/Filter.java +++ b/qadevOOo/runner/basicrunner/basichelper/Filter.java @@ -2,9 +2,9 @@ * * $RCSfile: Filter.java,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change:$Date: 2003-01-27 16:27:28 $ + * last change:$Date: 2003-11-18 16:13:33 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -203,7 +203,7 @@ class FilterImpl implements XInitialization, XTypeProvider, XNameAccess { if (name.equals("State")) return aState; else if (name.equals("Result")) - return new Boolean(bResult); + return Boolean.valueOf(bResult); else throw new NoSuchElementException(); } |