Skip to content

Commit 531600a

Browse files
committed
remove verbose comments
Signed-off-by: Jialiang Liang <jiallian@amazon.com>
1 parent ee2f10c commit 531600a

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

  • core/src/main/java/org/opensearch/sql/ast/tree

core/src/main/java/org/opensearch/sql/ast/tree/Regex.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,26 +15,20 @@
1515
import org.opensearch.sql.ast.expression.Literal;
1616
import org.opensearch.sql.ast.expression.UnresolvedExpression;
1717

18-
/** AST node represent Regex filtering operation. */
1918
@Getter
2019
@ToString
2120
@EqualsAndHashCode(callSuper = false)
2221
public class Regex extends UnresolvedPlan {
23-
/** Operator constants. */
2422
public static final String EQUALS_OPERATOR = "=";
2523

2624
public static final String NOT_EQUALS_OPERATOR = "!=";
2725

28-
/** Field to match against. */
2926
private final UnresolvedExpression field;
3027

31-
/** Whether this is a negated match (!=). */
3228
private final boolean negated;
3329

34-
/** Pattern. */
3530
private final Literal pattern;
3631

37-
/** Child Plan. */
3832
@Setter private UnresolvedPlan child;
3933

4034
public Regex(UnresolvedExpression field, boolean negated, Literal pattern) {

0 commit comments

Comments
 (0)