summaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/prelude/query/parser/UnicodePropertyDump.java
diff options
context:
space:
mode:
Diffstat (limited to 'container-search/src/main/java/com/yahoo/prelude/query/parser/UnicodePropertyDump.java')
-rw-r--r--container-search/src/main/java/com/yahoo/prelude/query/parser/UnicodePropertyDump.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/container-search/src/main/java/com/yahoo/prelude/query/parser/UnicodePropertyDump.java b/container-search/src/main/java/com/yahoo/prelude/query/parser/UnicodePropertyDump.java
index d5f72a3387e..0b86b05deb4 100644
--- a/container-search/src/main/java/com/yahoo/prelude/query/parser/UnicodePropertyDump.java
+++ b/container-search/src/main/java/com/yahoo/prelude/query/parser/UnicodePropertyDump.java
@@ -25,10 +25,10 @@ class UnicodePropertyDump {
boolean debug = false;
if (arg.length > 0) {
- start = Integer.valueOf(arg[0]).intValue();
+ start = new Integer(arg[0]).intValue();
}
if (arg.length > 1) {
- end = Integer.valueOf(arg[1]).intValue();
+ end = new Integer(arg[1]).intValue();
}
if (arg.length > 2) {
debug = new Boolean(arg[2]).booleanValue();