diff src/luan/modules/lucene/SupplementingConfig.java @ 1771:c62324841dfb

improve NumberFieldParser and add key map lucene query
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 25 Jun 2023 15:05:09 -0600
parents 46cf5137cb6b
children
line wrap: on
line diff
--- a/src/luan/modules/lucene/SupplementingConfig.java	Thu Jun 15 17:55:47 2023 -0600
+++ b/src/luan/modules/lucene/SupplementingConfig.java	Sun Jun 25 15:05:09 2023 -0600
@@ -69,7 +69,7 @@
 		Map<String,Object> map = new LinkedHashMap<String,Object>();
 		for( Map.Entry<Object,Object> entry : table.rawIterable() ) {
 			String name = (String)entry.getKey();
-			Object value  = entry.getValue();
+			Object value = entry.getValue();
 			if( value instanceof LuanTable ) {
 				LuanTable list = (LuanTable)value;
 				if( !list.isList() )