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 @@ -131,6 +131,10 @@ public RefType getRefType() {
return refType == null ? RefType.branch : refType;
}

public void setRefType(RefType refType) {
this.refType = refType == null ? RefType.branch : refType;
}

/**
* this returns the branchName instead of reference name
* @return returns the ref name.
Expand Down