From 0646aec69f1eac5ada9a407016248aa27c852a03 Mon Sep 17 00:00:00 2001 From: Ryan McKinley Date: Thu, 23 Feb 2012 05:56:35 +0000 Subject: [PATCH] LUCENE-3795: minor cleanup git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/branches/lucene3795_lsp_spatial_module@1292659 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/lucene/spatial/strategy/util/NumericFieldInfo.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/modules/spatial/strategy/src/java/org/apache/lucene/spatial/strategy/util/NumericFieldInfo.java b/modules/spatial/strategy/src/java/org/apache/lucene/spatial/strategy/util/NumericFieldInfo.java index 407879a298a..6991b9a02f9 100644 --- a/modules/spatial/strategy/src/java/org/apache/lucene/spatial/strategy/util/NumericFieldInfo.java +++ b/modules/spatial/strategy/src/java/org/apache/lucene/spatial/strategy/util/NumericFieldInfo.java @@ -17,9 +17,7 @@ package org.apache.lucene.spatial.strategy.util; -import org.apache.lucene.analysis.NumericTokenStream; import org.apache.lucene.document.DoubleField; -import org.apache.lucene.document.Field; import org.apache.lucene.document.FieldType; import org.apache.lucene.index.IndexableField; @@ -46,6 +44,5 @@ public class NumericFieldInfo { fieldType.setIndexed(index); fieldType.setNumericPrecisionStep(precisionStep); return new DoubleField(name,v,fieldType); - } }