Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[cleanup] Remove unused and infinite loop designed method #542

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2011, 2019 THALES GLOBAL SERVICES.
* Copyright (c) 2011, 2024 THALES GLOBAL SERVICES.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
Expand Down Expand Up @@ -249,24 +249,6 @@ public static void createNotification(DiagramRootEditPart rootEditPart, String m
pane.add(notificationFigure);
}

/**
* Create a new notification figure and display it to the diagram.
*
* @param rootEditPart
* the diagram root edit part
* @param message
* the message
* @param lockStatus
* the {@link LockStatus} to display in the notification
* @param height
* notification figure height
* @param width
* notification figure width
*/
public static void createNotification(DiagramRootEditPart rootEditPart, String message, LockStatus lockStatus, int height, int width) {
createNotification(rootEditPart, message, lockStatus, height, width);
}

/**
* Create a new notification figure and display it to the diagram.
*
Expand Down