Skip to content

Commit c70db80

Browse files
gsvicDimitrisStaratzis
authored andcommitted
Change QueryCondition constructor accessor to public
1 parent 20a2e53 commit c70db80

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/io/tiledb/java/api/QueryCondition.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)