1212import org .bukkit .GameMode ;
1313import org .bukkit .entity .EntityType ;
1414
15+ import org .jetbrains .annotations .NotNull ;
1516import world .bentobox .bentobox .BentoBox ;
1617import world .bentobox .bentobox .api .configuration .ConfigComment ;
1718import world .bentobox .bentobox .api .configuration .ConfigEntry ;
@@ -771,18 +772,6 @@ public void setIslandProtectionRange(int islandProtectionRange) {
771772 this .islandDistance = islandProtectionRange ;
772773 }
773774
774- /**
775- * @param islandStartX the islandStartX to set
776- */
777- public void setIslandStartX (int islandStartX ) {
778- }
779-
780- /**
781- * @param islandStartZ the islandStartZ to set
782- */
783- public void setIslandStartZ (int islandStartZ ) {
784- }
785-
786775 /**
787776 * @param maxIslands the maxIslands to set
788777 */
@@ -970,7 +959,7 @@ public boolean isDeathsResetOnNewIsland() {
970959 * @return the onJoinCommands
971960 */
972961 @ Override
973- public List <String > getOnJoinCommands () {
962+ public @ NotNull List <String > getOnJoinCommands () {
974963 return onJoinCommands ;
975964 }
976965
@@ -985,7 +974,7 @@ public void setOnJoinCommands(List<String> onJoinCommands) {
985974 * @return the onLeaveCommands
986975 */
987976 @ Override
988- public List <String > getOnLeaveCommands () {
977+ public @ NotNull List <String > getOnLeaveCommands () {
989978 return onLeaveCommands ;
990979 }
991980
@@ -1000,7 +989,7 @@ public void setOnLeaveCommands(List<String> onLeaveCommands) {
1000989 * @return the onRespawnCommands
1001990 */
1002991 @ Override
1003- public List <String > getOnRespawnCommands () {
992+ public @ NotNull List <String > getOnRespawnCommands () {
1004993 return onRespawnCommands ;
1005994 }
1006995
0 commit comments