Skip to content

Commit

Permalink
removed
Browse files Browse the repository at this point in the history
  • Loading branch information
PauliusKu committed Sep 13, 2024
1 parent 73a3c93 commit 854c5db
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 11 deletions.
10 changes: 0 additions & 10 deletions src/v2/formatterFramework/FormatterFactory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ export class FormatterFactory {
public static getFormatterInstances(
configurationManager: IConfigurationManager
): IFormatter[] {
console.log("Getting formatters ... ");
const instances: IFormatter[] = [];
for (const formatterClass in formatterRegistry) {
if (
Expand All @@ -15,18 +14,9 @@ export class FormatterFactory {
configurationManager
)
) {
console.log(
"Formatter activated:",
formatterRegistry[formatterClass].formatterLabel
);
instances.push(
new formatterRegistry[formatterClass](configurationManager)
);
} else {
console.log(
"Formatter disabled:",
formatterRegistry[formatterClass].formatterLabel
);
}
}
return instances;
Expand Down
1 change: 0 additions & 1 deletion src/v2/formatterFramework/FormattingEngine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,6 @@ export class FormattingEngine {
this.configurationManager.setOverridingSettings(
JSON.parse(settingsString)
);
console.log("Settings override");
}
}

Expand Down

0 comments on commit 854c5db

Please sign in to comment.