Skip to content

Commit

Permalink
public ctors (#96)
Browse files Browse the repository at this point in the history
  • Loading branch information
DvirDukhan committed Dec 22, 2020
1 parent b0adafa commit 89a975c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class RecordImpl implements Record {
private final List<String> header;
private final List<Object> values;

RecordImpl(List<String> header, List<Object> values){
public RecordImpl(List<String> header, List<Object> values){
this.header=header;
this.values = values;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class StatisticsImpl implements Statistics {
* Each string is built in the form of "K:V" where K is statistics label and V is its value.
* @param raw a raw representation of the query execution statistics
*/
StatisticsImpl(List<byte[]> raw){
public StatisticsImpl(List<byte[]> raw){
this.raw = raw;
this.statistics = new EnumMap<>(Statistics.Label.class); // lazy loaded
}
Expand Down

0 comments on commit 89a975c

Please sign in to comment.