File tree 2 files changed +1
-5
lines changed
src/main/java/org/elasticsearch/script/javascript
2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ The JavaScript language plugin allows to have `javascript` (or `js`) as the lang
6
6
In order to install the plugin, simply run: ` bin/plugin -install elasticsearch/elasticsearch-lang-javascript/2.1.0 ` .
7
7
8
8
* For master elasticsearch versions, look at [ master branch] ( https://github.com/elasticsearch/elasticsearch-lang-javascript/tree/master ) .
9
+ * For 1.4.x elasticsearch versions, look at [ es-1.4 branch] ( https://github.com/elasticsearch/elasticsearch-lang-javascript/tree/es-1.4 ) .
9
10
* For 1.3.x elasticsearch versions, look at [ es-1.3 branch] ( https://github.com/elasticsearch/elasticsearch-lang-javascript/tree/es-1.3 ) .
10
11
* For 1.2.x elasticsearch versions, look at [ es-1.2 branch] ( https://github.com/elasticsearch/elasticsearch-lang-javascript/tree/es-1.2 ) .
11
12
* For 1.1.x elasticsearch versions, look at [ es-1.1 branch] ( https://github.com/elasticsearch/elasticsearch-lang-javascript/tree/es-1.1 ) .
Original file line number Diff line number Diff line change @@ -234,11 +234,6 @@ public void setNextDocId(int doc) {
234
234
lookup .setNextDocId (doc );
235
235
}
236
236
237
- @ Override
238
- public void setNextScore (float score ) {
239
- ScriptableObject .putProperty (scope , "_score" , score );
240
- }
241
-
242
237
@ Override
243
238
public void setNextVar (String name , Object value ) {
244
239
ScriptableObject .putProperty (scope , name , value );
You can’t perform that action at this time.
0 commit comments