mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-09 17:23:53 +01:00
MISC: Remove debug code (#1448)
This commit is contained in:
parent
3fafa23f28
commit
e66a8e319f
@ -144,7 +144,6 @@ export class StatusBar {
|
||||
const value = registerValue.slice(2).trim();
|
||||
this.registers[name] = value;
|
||||
}
|
||||
console.log(this.registers);
|
||||
};
|
||||
// this is used to show notifications.
|
||||
// The package passes a new HTMLElement, but we only want to show the text.
|
||||
|
@ -148,7 +148,6 @@ class Args {
|
||||
};
|
||||
|
||||
private spliceParam(validArgs: ArgStrings): string {
|
||||
console.log(validArgs);
|
||||
const argIndex = [...validArgs.long, ...validArgs.short].reduce((ret: number, arg: string) => {
|
||||
const argIndex = this.args.indexOf(arg);
|
||||
return argIndex > -1 ? argIndex : ret;
|
||||
|
Loading…
Reference in New Issue
Block a user