annotate src/goodjava/lucene/api/MoreFieldInfo.java @ 1648:224af797b1f9
Mainly small install script improvements
- Consistent usage of `$LUANHOME`, removed reliance on current directory.
- Made Luan build and install fine (on Linux) without requiring launching it via sudo. Only asks to elevate privileges if installation failed.
- Minor spelling mistake fix.
author |
Fox |
date |
Mon, 28 Mar 2022 18:00:12 +0200 |
parents |
f848d40b3b07 |
children |
|
rev |
line source |
1525
|
1 package goodjava.lucene.api;
|
|
2
|
|
3 import java.util.Map;
|
|
4
|
|
5
|
|
6 public final class MoreFieldInfo {
|
|
7 public final Map<String,Object> unstoredFields;
|
|
8 public final Map<String,Float> boosts;
|
|
9
|
|
10 public MoreFieldInfo(Map<String,Object> unstoredFields,Map<String,Float> boosts) {
|
|
11 this.unstoredFields = unstoredFields;
|
|
12 this.boosts = boosts;
|
|
13 }
|
|
14 }
|