Rebuild for Issue #114 Pull #116

This commit is contained in:
Peter Cottle 2013-07-04 17:46:31 -07:00
parent a22f033807
commit 11a3062797
4 changed files with 3 additions and 11 deletions

View file

@ -8426,10 +8426,6 @@ GitEngine.prototype.resolveStringRef = function(ref) {
if (this.refs[ref]) {
return this.refs[ref];
}
// case insensitive also
if (this.refs[ref.toUpperCase()]) {
return this.refs[ref.toUpperCase()];
}
// Attempt to split ref string into a reference and a string of ~ and ^ modifiers.
var startRef = null;
@ -24822,10 +24818,6 @@ GitEngine.prototype.resolveStringRef = function(ref) {
if (this.refs[ref]) {
return this.refs[ref];
}
// case insensitive also
if (this.refs[ref.toUpperCase()]) {
return this.refs[ref.toUpperCase()];
}
// Attempt to split ref string into a reference and a string of ~ and ^ modifiers.
var startRef = null;