Fixed outdated docstrings to avoid annoying IDE warnings

This commit is contained in:
leriomaggio
2021-10-29 10:37:12 +01:00
parent 237a423180
commit acb60979b9
2 changed files with 1 additions and 7 deletions

View File

@@ -214,7 +214,6 @@ public final class DragCell extends JPanel implements ILocalRepaint {
/** /**
* Automatically calculates rough bounds of this cell. * Automatically calculates rough bounds of this cell.
* @param rectangleOfDouble
*/ */
public void updateRoughBounds() { public void updateRoughBounds() {
final double contentW = FView.SINGLETON_INSTANCE.getPnlContent().getWidth(); final double contentW = FView.SINGLETON_INSTANCE.getPnlContent().getWidth();
@@ -226,10 +225,6 @@ public final class DragCell extends JPanel implements ILocalRepaint {
/** Explicitly sets percent bounds of this cell. Will be smoothed /** Explicitly sets percent bounds of this cell. Will be smoothed
* later to avoid pixel rounding errors. * later to avoid pixel rounding errors.
* @param x0   double
* @param y0   double
* @param w0   double
* @param h0   double
*/ */
public void setRoughBounds(final RectangleOfDouble rectangleOfDouble) { public void setRoughBounds(final RectangleOfDouble rectangleOfDouble) {
this.roughSize = rectangleOfDouble; this.roughSize = rectangleOfDouble;

View File

@@ -543,8 +543,7 @@ public final class ItemListView<T extends InventoryItem> extends ItemView<T> {
/** /**
* Instantiates a new table model. * Instantiates a new table model.
* *
* @param table0 &emsp; {@link forge.gui.ItemManager.ItemTable<T>} * @param model0 &emsp; {@link forge.itemmanager.ItemManagerModel<T>}
* @param model0 &emsp; {@link forge.gui.ItemManager.ItemManagerModel<T>}
*/ */
public ItemTableModel(final ItemManagerModel<T> model0) { public ItemTableModel(final ItemManagerModel<T> model0) {
this.model = model0; this.model = model0;