File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/main/java/com/redislabs/redisgraph/impl/resultset Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments