File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/main/java/io/tiledb/java/api Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -9,13 +9,13 @@ public class QueryCondition implements AutoCloseable {
99 private SWIGTYPE_p_p_tiledb_query_condition_t conditionpp ;
1010 private Datatype type ;
1111
12- protected QueryCondition (Context ctx , SWIGTYPE_p_p_tiledb_query_condition_t conditionpp ) {
12+ public QueryCondition (Context ctx , SWIGTYPE_p_p_tiledb_query_condition_t conditionpp ) {
1313 this .ctx = ctx ;
1414 this .conditionp = tiledb .tiledb_query_condition_tpp_value (conditionpp );
1515 this .conditionpp = conditionpp ;
1616 }
1717
18- protected QueryCondition (
18+ public QueryCondition (
1919 Context ctx ,
2020 String attributeName ,
2121 Object value ,
@@ -60,7 +60,7 @@ protected QueryCondition(
6060 this .ctx = ctx ;
6161 }
6262
63- protected SWIGTYPE_p_tiledb_query_condition_t getConditionp () {
63+ public SWIGTYPE_p_tiledb_query_condition_t getConditionp () {
6464 return this .conditionp ;
6565 }
6666
You can’t perform that action at this time.
0 commit comments