summaryrefslogtreecommitdiff
path: root/plugins/ingest-geoip
diff options
context:
space:
mode:
authorTanguy Leroux <tlrx.dev@gmail.com>2016-07-01 16:28:59 +0200
committerTanguy Leroux <tlrx.dev@gmail.com>2016-07-01 16:57:14 +0200
commit8c40b2b54eac3e3ab3c41ece5c758be75173191b (patch)
treecbb17a82da3647a64ea802a756446fa05c30036f /plugins/ingest-geoip
parent93b42b8e69c2c23cb3cc6b380a33776ce05370d5 (diff)
Fix order of modifiers
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);