Skip to content

Commit 3290301

Browse files
committed
Remove debugging logs
1 parent 08e542a commit 3290301

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/features/dfdElements/outputPortEditUi.ts

-4
Original file line numberDiff line numberDiff line change
@@ -233,10 +233,6 @@ class MonacoEditorDfdBehaviorCompletionProvider implements monaco.languages.Comp
233233
const openBraceIndex = line.indexOf("{");
234234
const closingBraceIndex = line.indexOf("}");
235235

236-
console.log("Moin" + column);
237-
console.log("Moin" + openBraceIndex);
238-
console.log("Moin" + closingBraceIndex);
239-
console.log("Moin" + (openBraceIndex !== -1 && (closingBraceIndex === -1 || column <= closingBraceIndex)));
240236
// If the first semicolon hasn't been typed yet, assume we're inside the input list
241237
if (openBraceIndex !== -1 && (closingBraceIndex === -1 || column <= closingBraceIndex + 1)) {
242238
// Inside `{List of available inputs}` section

0 commit comments

Comments
 (0)