Skip to content

Commit

Permalink
refactor: Remove obsolete methods
Browse files Browse the repository at this point in the history
  • Loading branch information
ewuerger committed Oct 29, 2024
1 parent ec254e9 commit 5f54ac6
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions capellambse_context_diagrams/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -456,10 +456,6 @@ def __init__(
def name(self) -> str: # type: ignore
return f"Interface Context of {self.target.name}"

def _create_diagram(self, params: dict[str, t.Any]) -> cdiagram.Diagram:
params["elkdata"] = self.elk_input_data(params)
return super()._create_diagram(params)


class FunctionalContextDiagram(ContextDiagram):
"""An automatically generated Context Diagram exclusively for
Expand All @@ -485,10 +481,6 @@ def __init__(
def name(self) -> str: # type: ignore
return f"Interface Context of {self.target.name}"

def _create_diagram(self, params: dict[str, t.Any]) -> cdiagram.Diagram:
params["elkdata"] = self.elk_input_data(params)
return super()._create_diagram(params)


class ClassTreeDiagram(ContextDiagram):
"""An automatically generated ClassTree Diagram.
Expand Down

0 comments on commit 5f54ac6

Please sign in to comment.