From 36ff8d70fa6fe332a70723a2d6eecba0823ad24b Mon Sep 17 00:00:00 2001 From: Jonathan Turner Date: Sat, 3 Feb 2024 15:01:21 -0500 Subject: [PATCH] Fixed javadocs --- src/Assignments/A1/models/Board.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Assignments/A1/models/Board.java b/src/Assignments/A1/models/Board.java index f86053f..90d3114 100644 --- a/src/Assignments/A1/models/Board.java +++ b/src/Assignments/A1/models/Board.java @@ -122,7 +122,6 @@ public class Board { * * @param first the first index of the values being swapped * @param second the second index of the values being swapped - * @return if the values were swapped or not. */ public void swap(int first, int second) { int temp = this.pieces[first];