mirror of
https://github.com/gchq/CyberChef
synced 2025-01-24 02:05:02 +00:00
Remove unused parameter
This commit is contained in:
parent
85809efcc0
commit
476d9c8034
1 changed files with 1 additions and 2 deletions
|
@ -193,9 +193,8 @@ class App {
|
||||||
* Sets the user's input data.
|
* Sets the user's input data.
|
||||||
*
|
*
|
||||||
* @param {string} input - The string to set the input to
|
* @param {string} input - The string to set the input to
|
||||||
* @param {boolean} [silent=false] - Suppress statechange event
|
|
||||||
*/
|
*/
|
||||||
setInput(input, silent=false) {
|
setInput(input) {
|
||||||
// Assume that there aren't any inputs
|
// Assume that there aren't any inputs
|
||||||
let inputNum = this.manager.input.getActiveTab();
|
let inputNum = this.manager.input.getActiveTab();
|
||||||
if (inputNum === -1) inputNum = 1;
|
if (inputNum === -1) inputNum = 1;
|
||||||
|
|
Loading…
Reference in a new issue