Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
/**
* Utility to append two vectors together.
*/
class VectorAppender implements VectorVisitor<ValueVector, Void> {
public class VectorAppender implements VectorVisitor<ValueVector, Void> {

/**
* The targetVector to be appended.
Expand All @@ -56,7 +56,7 @@ class VectorAppender implements VectorVisitor<ValueVector, Void> {
* Constructs a new targetVector appender, with the given targetVector.
* @param targetVector the targetVector to be appended.
*/
VectorAppender(ValueVector targetVector) {
public VectorAppender(ValueVector targetVector) {
this.targetVector = targetVector;
typeVisitor = new TypeEqualsVisitor(targetVector, false, true);
}
Expand Down