Skip to content

Commit

Permalink
Make Java AstNode public (rapidsai#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: rapidsai#8953
  • Loading branch information
jlowe authored and shwina committed Aug 9, 2021
1 parent 012caf8 commit 0219d60
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 0219d60

Please sign in to comment.