Skip to content

Commit

Permalink
Remove warnings about tree drawing methods being experimental
Browse files Browse the repository at this point in the history
  • Loading branch information
FeldrinH committed Oct 3, 2023
1 parent 2a5aaa5 commit 791b1cd
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/main/java/ee/ut/dendroloj/Dendrologist.java
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,6 @@ public static void paint(Color color) {
* <p>
* Note: Passing in graphs that are not trees is supported but not intended.
* In such a case edges that violate the requirements of a tree will be highlighted in red.
* <p>
* THIS IS AN EXPERIMENTAL API. IT MAY BE CHANGED OR REMOVED WITHOUT WARNING IN FUTURE VERSIONS.
*
* @param root root node of the tree
* @param label function that takes in a node and returns the label for that node
Expand All @@ -105,8 +103,6 @@ public static <T> void drawBinaryTree(T root, Function<T, String> label, Functio
* <p>
* Note: Passing in graphs that are not trees is supported but not intended.
* In such a case edges that violate the requirements of a tree will be highlighted in red.
* <p>
* THIS IS AN EXPERIMENTAL API. IT MAY BE CHANGED OR REMOVED WITHOUT WARNING IN FUTURE VERSIONS.
*
* @param root root node of the tree
* @param label function that takes in a node and returns the label for that node
Expand Down

0 comments on commit 791b1cd

Please sign in to comment.