Remove obsolete "options" from workboard "updateCard()" call

Summary: Depends on D20637. Ref T4900. This is some ancient dead code that nothing uses.

Test Plan: Grepped for `updateCard()` to verify it's private. Searched for "options" and "dirtyColumn" and got no hits.

Reviewers: amckinley

Reviewed By: amckinley

Maniphest Tasks: T4900

Differential Revision: https://secure.phabricator.com/D20638
This commit is contained in:
epriestley
2019-07-02 10:19:03 -07:00
parent 2de8a23adb
commit fc795994f3
2 changed files with 15 additions and 18 deletions

View File

@@ -570,10 +570,7 @@ JX.install('WorkboardBoard', {
list.unlock();
},
updateCard: function(response, options) {
options = options || {};
options.dirtyColumns = options.dirtyColumns || {};
updateCard: function(response) {
var columns = this.getColumns();
var phid = response.objectPHID;