Skip to content

Commit

Permalink
Make Java AstNode public (#8953)
Browse files Browse the repository at this point in the history
This makes the Java `AstNode` base class public so applications can construct an AST using a common type for all AST nodes.

Authors:
  - Jason Lowe (https://github.com/jlowe)

Approvers:
  - Robert (Bobby) Evans (https://github.com/revans2)

URL: #8953
  • Loading branch information
jlowe authored Aug 6, 2021
1 parent ffb37c9 commit 5de9def
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/src/main/java/ai/rapids/cudf/ast/AstNode.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import java.nio.ByteBuffer;

/** Base class of every node in an AST */
abstract class AstNode {
public abstract class AstNode {
/**
* Enumeration for the types of AST nodes that can appear in a serialized AST.
* NOTE: This must be kept in sync with the `jni_serialized_node_type` in CompiledExpression.cpp!
Expand Down

0 comments on commit 5de9def

Please sign in to comment.