From 16da25b1104357df3171f3804cdb0e6f5277ad5e Mon Sep 17 00:00:00 2001 From: Ingo Schwarz Date: Sat, 26 Aug 2017 21:29:55 +0200 Subject: [PATCH] Fix issue in JavaDoc of SortingState --- .../src/main/java/de/codecrafters/tableview/SortingStatus.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tableview/src/main/java/de/codecrafters/tableview/SortingStatus.java b/tableview/src/main/java/de/codecrafters/tableview/SortingStatus.java index c7168fe..a6a8c98 100644 --- a/tableview/src/main/java/de/codecrafters/tableview/SortingStatus.java +++ b/tableview/src/main/java/de/codecrafters/tableview/SortingStatus.java @@ -48,7 +48,7 @@ public boolean isTableSorted() { /** * Gives the column index, by which the {@link SortableTableView} is currently sorted. * - * @return The column index, by which the {@link SortableTableView} is currently sorted or {@value -1} if the table is not sorted. + * @return The column index, by which the {@link SortableTableView} is currently sorted or {@code -1} if the table is not sorted. */ public int getSortedColumnIndex() { return sortedColumnIndex;