Skip to content

Commit

Permalink
Mark deprecated vertex drawing methods as scheduled for removal
Browse files Browse the repository at this point in the history
  • Loading branch information
FeldrinH committed Aug 29, 2024
1 parent e8e3f5e commit c63d392
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/ee/ut/dendroloj/GraphCanvas.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,15 +66,15 @@ public void drawFixedVertex(V vertex, double x, double y, Object label, Color co
/**
* @deprecated use {@link #drawFixedVertex(V, double, double, Object)} instead
*/
@Deprecated
@Deprecated(forRemoval = true)
public void drawFixedVertex(V vertex, Object label, double x, double y) {
drawFixedVertex(vertex, x, y, label);
}

/**
* @deprecated use {@link #drawFixedVertex(V, double, double, Object, Color)} instead
*/
@Deprecated
@Deprecated(forRemoval = true)
public void drawFixedVertex(V vertex, Object label, double x, double y, Color color) {
drawFixedVertex(vertex, x, y, label, color);
}
Expand Down

0 comments on commit c63d392

Please sign in to comment.