// unsetDOV.js
(function () {
/*global adventurejs A*/
var p = adventurejs.Asset.prototype;
/**
* <strong>unsetDOV</strong> is a passthrough to
* <code><a href="#method_unsetVerbSubscription">unsetVerbSubscription</a></code>.
* @memberOf adventurejs.Asset
* @method adventurejs.Asset#unsetDOV
* @param {String} verb
*/
p.unsetDOV = function Asset_unsetDOV(verb) {
this.unsetVerbSubscription("dov", verb);
};
})();