summaryrefslogtreecommitdiff
path: root/odk/examples/DevelopersGuide/Database
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-08-12 14:00:54 +0200
committerNoel Grandin <noel@peralex.com>2014-08-19 14:57:16 +0200
commitbe1bb7b1ccee28be616b89cc95e97d656e78bbe3 (patch)
treed67d16a68d1469b5096a27c743c4b0326a0c0ebe /odk/examples/DevelopersGuide/Database
parent56ef5533fc1bce2134721ae64d4d6c18a3526a7a (diff)
java: use Boolean.valueOf instead of instantiating Boolean objects
Change-Id: Ie41d6b0170a035a694dd270c311a137fd1810e74
Diffstat (limited to 'odk/examples/DevelopersGuide/Database')
-rw-r--r--odk/examples/DevelopersGuide/Database/CodeSamples.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/odk/examples/DevelopersGuide/Database/CodeSamples.java b/odk/examples/DevelopersGuide/Database/CodeSamples.java
index f41f2ff11b71..4d8c765f8fae 100644
--- a/odk/examples/DevelopersGuide/Database/CodeSamples.java
+++ b/odk/examples/DevelopersGuide/Database/CodeSamples.java
@@ -277,7 +277,7 @@ public class CodeSamples
XPropertySet xProp = UnoRuntime.queryInterface(
XPropertySet.class,xSingleFac.createInstance());
xProp.setPropertyValue("Command","SELECT * FROM biblio");
- xProp.setPropertyValue("EscapeProcessing",new Boolean(true));
+ xProp.setPropertyValue("EscapeProcessing",Boolean.TRUE);
XNameContainer xCont = UnoRuntime.queryInterface(XNameContainer.class, xQDefs);
try