summaryrefslogtreecommitdiff
path: root/odk/examples/DevelopersGuide/Database
diff options
context:
space:
mode:
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