Skip to content

Commit

Permalink
Merge commit 'ac5c46d3d8ed3d0f11210c1dbcb0dd30112f1fc3' into 184-prep…
Browse files Browse the repository at this point in the history
…aration-for-repo-public-release
  • Loading branch information
PauliusKu committed Sep 16, 2024
2 parents 41ceaae + ac5c46d commit e05ce75
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 e05ce75

Please sign in to comment.