OpenSearch/docs/src/test
Nik Everett 4d58656065
Declare remaining parsers `final` (#50571) (#50615)
We have about 800 `ObjectParsers` in Elasticsearch, about 700 of which
are final. This is *probably* the right way to declare them because in
practice we never mutate them after they are built. And we certainly
don't change the static reference. Anyway, this adds `final` to these
parsers.

I found the non-final parsers with this:
```
diff \
  <(find . -type f -name '*.java' -exec grep -iHe 'static.*PARSER\s*=' {} \+ | sort) \
  <(find . -type f -name '*.java' -exec grep -iHe 'static.*final.*PARSER\s*=' {} \+ | sort) \
  2>&1 | grep '^<'
```
2020-01-03 11:48:11 -05:00
..
cluster/config Remove old unused test script files (#32970) 2018-08-27 16:29:50 -07:00
java/org/elasticsearch/smoketest Declare remaining parsers `final` (#50571) (#50615) 2020-01-03 11:48:11 -05:00
resources CONSOLEify remaining getting-started docs 2016-10-06 14:06:48 -04:00