diff --git a/src/model/docker.ts b/src/model/docker.ts index 78b5d0c9..d5052c8a 100644 --- a/src/model/docker.ts +++ b/src/model/docker.ts @@ -262,7 +262,7 @@ class Docker { throw new Error(`License File was corrupted, unable to locate serial`); } const endIndex = license.indexOf(endKey, startIndex); - //We slice off the first 4 characters as they are garbage values + // Slice off the first 4 characters as they are garbage values return Buffer.from(license.slice(startIndex, endIndex), 'base64').toString('binary').slice(4); } }