From a7d200f7c6b8b065b6dd0b6b477b2bbc06cda568 Mon Sep 17 00:00:00 2001 From: Heikki Aitakangas Date: Sat, 19 Mar 2022 19:55:25 +0200 Subject: [PATCH] Strip trailing spaces --- src/Netscript/ScriptDeath.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Netscript/ScriptDeath.ts b/src/Netscript/ScriptDeath.ts index eb31b6a65..18300d6ea 100644 --- a/src/Netscript/ScriptDeath.ts +++ b/src/Netscript/ScriptDeath.ts @@ -10,16 +10,16 @@ import { WorkerScript } from "./WorkerScript"; * script is killed. Which grants the player access to the class and the ability * to construct new instances with arbitrary data. */ -export class ScriptDeath { +export class ScriptDeath { /** Process ID number. */ pid: number; - + /** Filename of the script. */ name: string; - + /** IP Address on which the script was running */ hostname: string; - + /** Status message in case of script error. */ errorMessage = "";