Skip to content

Commit ce30c76

Browse files
committed
Change method visibility
1 parent 31a7932 commit ce30c76

File tree

1 file changed

+1
-1
lines changed
  • x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/fulltext

1 file changed

+1
-1
lines changed

x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/fulltext/FullTextFunction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ public static boolean checkDisjunctionPushable(Or or) {
287287
* @param expression expression to check
288288
* @return true if all children are full text functions or negations of full text functions, false otherwise
289289
*/
290-
public static boolean onlyFullTextFunctionsInExpression(Expression expression) {
290+
private static boolean onlyFullTextFunctionsInExpression(Expression expression) {
291291
if (expression instanceof FullTextFunction) {
292292
return true;
293293
} else if (expression instanceof Not) {

0 commit comments

Comments
 (0)