Browse Source

chore: Remove empty block statement

Resolves this eslint issue:

/puter/packages/phoenix/src/ansi-shell/parsing/PuterShellParser.js
  25:9  error  Empty block statement  no-empty
Sam Atkins 1 year ago
parent
commit
6d895dff42
1 changed files with 1 additions and 4 deletions
  1. 1 4
      packages/phoenix/src/ansi-shell/parsing/PuterShellParser.js

+ 1 - 4
packages/phoenix/src/ansi-shell/parsing/PuterShellParser.js

@@ -21,10 +21,7 @@ import { buildParserFirstHalf } from "./buildParserFirstHalf.js";
 import { buildParserSecondHalf } from "./buildParserSecondHalf.js";
 import { buildParserSecondHalf } from "./buildParserSecondHalf.js";
 
 
 export class PuterShellParser {
 export class PuterShellParser {
-    constructor () {
-        {
-        }
-    }
+    constructor () {}
     parseLineForSyntax () {}
     parseLineForSyntax () {}
     parseLineForProcessing (input) {
     parseLineForProcessing (input) {
         const sp = new StrataParser();
         const sp = new StrataParser();