From 40f2a4039f2881b7b83ec1f776cd9f0726854a9a Mon Sep 17 00:00:00 2001 From: Vyom Yadav <73882557+Vyom-Yadav@users.noreply.github.com> Date: Sat, 5 Feb 2022 20:38:43 +0530 Subject: [PATCH] HSEARCH-4479 Remove redundant public modifier reported by checkstyle --- .../org/hibernate/search/query/dsl/RangeMatchingContext.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v5migrationhelper/engine/src/main/java/org/hibernate/search/query/dsl/RangeMatchingContext.java b/v5migrationhelper/engine/src/main/java/org/hibernate/search/query/dsl/RangeMatchingContext.java index 6c235564b43..7386d61a749 100644 --- a/v5migrationhelper/engine/src/main/java/org/hibernate/search/query/dsl/RangeMatchingContext.java +++ b/v5migrationhelper/engine/src/main/java/org/hibernate/search/query/dsl/RangeMatchingContext.java @@ -25,7 +25,7 @@ public interface RangeMatchingContext extends FieldCustomization correct or should we specialize to String and Numeric (or all the numeric types? FromRangeContext from(T from); - public interface FromRangeContext { + interface FromRangeContext { RangeTerminationExcludable to(T to); FromRangeContext excludeLimit(); }