summaryrefslogtreecommitdiff
path: root/plugins/ingest-geoip
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/ingest-geoip')
-rw-r--r--plugins/ingest-geoip/src/main/java/org/elasticsearch/ingest/geoip/GeoIpProcessor.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ingest-geoip/src/main/java/org/elasticsearch/ingest/geoip/GeoIpProcessor.java b/plugins/ingest-geoip/src/main/java/org/elasticsearch/ingest/geoip/GeoIpProcessor.java
index 92c4785dba..64f0994b7d 100644
--- a/plugins/ingest-geoip/src/main/java/org/elasticsearch/ingest/geoip/GeoIpProcessor.java
+++ b/plugins/ingest-geoip/src/main/java/org/elasticsearch/ingest/geoip/GeoIpProcessor.java
@@ -272,7 +272,7 @@ public final class GeoIpProcessor extends AbstractProcessor {
// Geoip2's AddressNotFoundException is checked and due to the fact that we need run their code
// inside a PrivilegedAction code block, we are forced to catch any checked exception and rethrow
// it with an unchecked exception.
- private final static class AddressNotFoundRuntimeException extends RuntimeException {
+ private static final class AddressNotFoundRuntimeException extends RuntimeException {
public AddressNotFoundRuntimeException(Throwable cause) {
super(cause);