Revert "Add swap inputs feature"

This reverts commit 88c7843924.
This commit is contained in:
Patrick Lekaj 2019-08-25 23:40:12 +02:00
parent 88c7843924
commit ad07018abf
12 changed files with 16 additions and 78 deletions

View file

@ -24,7 +24,6 @@ class Operation {
this._disabled = false;
this._flowControl = false;
this._manualBake = false;
this._inputSwapable = false;
this._ingList = [];
// Public fields
@ -317,25 +316,6 @@ class Operation {
this._manualBake = !!value;
}
/**
* Returns true if this Operation has swapable input values.
*
* @returns {boolean}
*/
get inputSwapable() {
return this._inputSwapable;
}
/**
* Set whether this Operation shoud show swap input icon.
*
* @param {boolean} value
*/
set inputSwapable(value) {
this._inputSwapable = !!value;
}
}
export default Operation;