Remove case insensitive refs check.

This commit is contained in:
Nikita Kouevda 2013-07-04 17:41:30 -07:00
parent 92e2e303ed
commit fc24f3c145

View file

@ -1307,10 +1307,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;