Skip to content

Commit 89a975c

Browse files
author
DvirDukhan
authored
public ctors (#96)
1 parent b0adafa commit 89a975c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/com/redislabs/redisgraph/impl/resultset/RecordImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public class RecordImpl implements Record {
1010
private final List<String> header;
1111
private final List<Object> values;
1212

13-
RecordImpl(List<String> header, List<Object> values){
13+
public RecordImpl(List<String> header, List<Object> values){
1414
this.header=header;
1515
this.values = values;
1616
}

src/main/java/com/redislabs/redisgraph/impl/resultset/StatisticsImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public class StatisticsImpl implements Statistics {
2323
* Each string is built in the form of "K:V" where K is statistics label and V is its value.
2424
* @param raw a raw representation of the query execution statistics
2525
*/
26-
StatisticsImpl(List<byte[]> raw){
26+
public StatisticsImpl(List<byte[]> raw){
2727
this.raw = raw;
2828
this.statistics = new EnumMap<>(Statistics.Label.class); // lazy loaded
2929
}

0 commit comments

Comments
 (0)