From e55b8ad0e6c53135137a08e0fee2ae636f7acad9 Mon Sep 17 00:00:00 2001 From: Major- Date: Sat, 22 Feb 2014 21:51:52 +0000 Subject: [PATCH] Correct documentation. --- src/org/apollo/game/model/sector/SectorRepository.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/org/apollo/game/model/sector/SectorRepository.java b/src/org/apollo/game/model/sector/SectorRepository.java index 70ee8652..7ebf30cb 100644 --- a/src/org/apollo/game/model/sector/SectorRepository.java +++ b/src/org/apollo/game/model/sector/SectorRepository.java @@ -34,7 +34,6 @@ public final class SectorRepository { * Adds a {@link Sector} to the repository. * * @param sector The sector. - * @return {@code false} if another sector was replaced, otherwise {@code true}. * @throws IllegalArgumentException If the provided sector is null. * @throws UnsupportedOperationException If the coordinates of the provided sector are already mapped (and hence the * existing sector would be replaced), and removal of sectors is not permitted. @@ -89,8 +88,6 @@ public final class SectorRepository { * Removes a {@link Sector} from the repository, if permitted. * * @param sector The sector to remove. - * @return {@code true} unless the coordinates of the provided sector were the key to another sector, or the sector - * did not exist in the first place. * @throws UnsupportedOperationException If this method is called on a repository that does not permit removal. */ public void remove(Sector sector) {