diff --git a/CHANGELOG.md b/CHANGELOG.md index e440a2b..5c158b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ ### Changed - Dropped support for IDE versions older than 2022.2 - Updated dependencies +- Removed deprecated API access (TranslatorToolWindowFactory) ### Fixed - Broken badge link in README diff --git a/src/main/java/de/marhali/easyi18n/service/TranslatorToolWindowFactory.java b/src/main/java/de/marhali/easyi18n/service/TranslatorToolWindowFactory.java index 3bbfd23..fd981cb 100644 --- a/src/main/java/de/marhali/easyi18n/service/TranslatorToolWindowFactory.java +++ b/src/main/java/de/marhali/easyi18n/service/TranslatorToolWindowFactory.java @@ -28,7 +28,7 @@ public class TranslatorToolWindowFactory implements ToolWindowFactory, DumbAware @Override public void createToolWindowContent(@NotNull Project project, @NotNull ToolWindow toolWindow) { InstanceManager manager = InstanceManager.get(project); - ContentFactory contentFactory = ContentFactory.SERVICE.getInstance(); + ContentFactory contentFactory = ContentFactory.getInstance(); // Translations tree view TreeView treeView = new TreeView(project);