From 0d5cca8feb94850d1a6651b95bc09eccf8326c27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20B=C3=BCscher?= Date: Fri, 28 Apr 2017 14:19:00 +0200 Subject: [PATCH] Fixing checktyle error for modifier order --- .../metrics/geobounds/InternalGeoBounds.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/core/src/main/java/org/elasticsearch/search/aggregations/metrics/geobounds/InternalGeoBounds.java b/core/src/main/java/org/elasticsearch/search/aggregations/metrics/geobounds/InternalGeoBounds.java index 37297475a28..a64115447be 100644 --- a/core/src/main/java/org/elasticsearch/search/aggregations/metrics/geobounds/InternalGeoBounds.java +++ b/core/src/main/java/org/elasticsearch/search/aggregations/metrics/geobounds/InternalGeoBounds.java @@ -34,11 +34,11 @@ import java.util.Objects; public class InternalGeoBounds extends InternalAggregation implements GeoBounds { - final static ParseField BOUNDS_FIELD = new ParseField("bounds"); - final static ParseField TOP_LEFT_FIELD = new ParseField("top_left"); - final static ParseField BOTTOM_RIGHT_FIELD = new ParseField("bottom_right"); - final static ParseField LAT_FIELD = new ParseField("lat"); - final static ParseField LON_FIELD = new ParseField("lon"); + static final ParseField BOUNDS_FIELD = new ParseField("bounds"); + static final ParseField TOP_LEFT_FIELD = new ParseField("top_left"); + static final ParseField BOTTOM_RIGHT_FIELD = new ParseField("bottom_right"); + static final ParseField LAT_FIELD = new ParseField("lat"); + static final ParseField LON_FIELD = new ParseField("lon"); final double top;