Skip to content

Commit

Permalink
Remove no longer needed imports
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiaslehnertum committed Oct 7, 2023
1 parent 48f02b4 commit 7864c42
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { FunctionComponent } from 'react';
import { BPMNAnnotation } from './bpmn-annotation';
import { ThemedPath, ThemedPolyline, ThemedRect } from '../../../components/theme/themedComponents';
import { ThemedPath, ThemedRect } from '../../../components/theme/themedComponents';
import { Multiline } from '../../../utils/svg/multiline';

export const BPMNAnnotationComponent: FunctionComponent<Props> = ({ element }) => (
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { FunctionComponent } from 'react';
import { BPMNConversation } from './bpmn-conversation';
import { ThemedCircle, ThemedPolyline } from '../../../components/theme/themedComponents';
import { ThemedPolyline } from '../../../components/theme/themedComponents';
import { Multiline } from '../../../utils/svg/multiline';

export const BPMNConversationComponent: FunctionComponent<Props> = ({ element }) => (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import { IBoundary } from '../../../utils/geometry/boundary';
import { DeepPartial } from 'redux';
import { assign } from '../../../utils/fx/assign';
import * as Apollon from '../../../typings';
import { BPMNGatewayType } from '../bpmn-gateway/bpmn-gateway';

export type BPMNConversationType = 'default' | 'call';

Expand Down
2 changes: 0 additions & 2 deletions src/main/packages/bpmn/bpmn-gateway/bpmn-gateway-update.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@ import { ModelState } from '../../../components/store/model-state';
import { styled } from '../../../components/theme/styles';
import { UMLElementRepository } from '../../../services/uml-element/uml-element-repository';
import { BPMNGateway, BPMNGatewayType } from './bpmn-gateway';
import { Switch } from '../../../components/controls/switch/switch';
import { Dropdown } from '../../../components/controls/dropdown/dropdown';
import { UseCaseRelationshipType } from '../../uml-use-case-diagram';

interface OwnProps {
element: BPMNGateway;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { ModelState } from '../../../components/store/model-state';
import { compose } from 'redux';
import { withTheme, withThemeProps } from '../../../components/theme/styles';
import { ApollonView } from '../../../services/editor/editor-types';
import { ThemedCircle, ThemedCircleContrast } from '../../../components/theme/themedComponents';
import { ThemedCircle } from '../../../components/theme/themedComponents';
import { Multiline } from '../../../utils/svg/multiline';

type OwnProps = {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
import { BPMNElementType, BPMNRelationshipType } from '..';
import { IUMLRelationship, UMLRelationship } from '../../../services/uml-relationship/uml-relationship';
import { ReachabilityGraphRelationshipType } from '../../uml-reachability-graph';
import { BPMNRelationshipType } from '..';
import { UMLRelationship } from '../../../services/uml-relationship/uml-relationship';
import { DeepPartial } from 'redux';
import { UMLRelationshipCenteredDescription } from '../../../services/uml-relationship/uml-relationship-centered-description';
import { UMLElement } from '../../../services/uml-element/uml-element';
import * as Apollon from '../../../typings';
import { BPMNGatewayType } from '../bpmn-gateway/bpmn-gateway';
import { BPMNFlow } from '../../../typings';

export type BPMNFlowType = 'sequence' | 'message' | 'association';
Expand Down

0 comments on commit 7864c42

Please sign in to comment.