This commit is contained in:
Chad Austin 2013-01-23 11:54:00 -08:00 коммит произвёл Jukka Jylänki
Родитель ba7a7200ec
Коммит 8a12d4c1c4
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -721,9 +721,8 @@ RegisteredRawPointer.prototype.fromWireTypeAutoDowncast = function(ptr) {
// todo: can come back -1 or -2!! Throw appropriate exception
return handle;
} else {
handle = new this.Handle(ptr);
return new this.Handle(ptr);
}
return handle;
};
function RegisteredClassInstance(constructor, Handle) {