Skip to content

Commit d52f1d0

Browse files
committed
package private
Signed-off-by: Karen X <[email protected]>
1 parent 0b995e8 commit d52f1d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/transport-grpc/src/main/java/org/opensearch/transport/grpc/proto/request/search/query/ScriptQueryBuilderProtoUtils.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* This class handles the conversion of Protocol Buffer representations to their
1818
* corresponding OpenSearch query builder objects.
1919
*/
20-
public class ScriptQueryBuilderProtoUtils {
20+
class ScriptQueryBuilderProtoUtils {
2121

2222
private ScriptQueryBuilderProtoUtils() {
2323
// Utility class, no instances
@@ -31,7 +31,7 @@ private ScriptQueryBuilderProtoUtils() {
3131
* @return the converted ScriptQueryBuilder object
3232
* @throws IllegalArgumentException if the script query proto is null or invalid
3333
*/
34-
public static ScriptQueryBuilder fromProto(ScriptQuery scriptQueryProto) {
34+
static ScriptQueryBuilder fromProto(ScriptQuery scriptQueryProto) {
3535
if (scriptQueryProto == null) {
3636
throw new IllegalArgumentException("ScriptQuery cannot be null");
3737
}

0 commit comments

Comments
 (0)