From 8c40b2b54eac3e3ab3c41ece5c758be75173191b Mon Sep 17 00:00:00 2001 From: Tanguy Leroux Date: Fri, 1 Jul 2016 16:28:59 +0200 Subject: Fix order of modifiers --- .../src/main/java/org/elasticsearch/ingest/geoip/GeoIpProcessor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/ingest-geoip') 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); -- cgit v1.2.3