Update Maven plugins

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot 2021-07-03 11:06:33 +10:00
parent bc5ed0e911
commit a388fc3a6c
5 changed files with 7 additions and 7 deletions

View file

@ -327,7 +327,7 @@
<dependency>
<groupId>org.eclipse.jdt</groupId>
<artifactId>ecj</artifactId>
<version>3.24.0</version>
<version>3.26.0</version>
</dependency>
</dependencies>
</plugin>
@ -363,7 +363,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>3.1.1</version>
<version>3.1.2</version>
<executions>
<execution>
<phase>process-classes</phase>
@ -380,7 +380,7 @@
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>8.39</version>
<version>8.44</version>
</dependency>
</dependencies>
</plugin>

View file

@ -25,10 +25,10 @@ public class BlockMetadataStore extends MetadataStoreBase<Block> implements Meta
/**
* Generates a unique metadata key for a {@link Block} object based on its coordinates in the world.
* @see MetadataStoreBase#disambiguate(Object, String)
* @param block the block
* @param metadataKey The name identifying the metadata value
* @return a unique metadata key
* @see MetadataStoreBase#disambiguate(Object, String)
*/
@Override
protected String disambiguate(Block block, String metadataKey) {

View file

@ -11,10 +11,10 @@ public class EntityMetadataStore extends MetadataStoreBase<Entity> implements Me
/**
* Generates a unique metadata key for an {@link Entity} UUID.
*
* @see MetadataStoreBase#disambiguate(Object, String)
* @param entity the entity
* @param metadataKey The name identifying the metadata value
* @return a unique metadata key
* @see MetadataStoreBase#disambiguate(Object, String)
*/
@Override
protected String disambiguate(Entity entity, String metadataKey) {

View file

@ -11,10 +11,10 @@ public class PlayerMetadataStore extends MetadataStoreBase<OfflinePlayer> implem
/**
* Generates a unique metadata key for {@link org.bukkit.entity.Player} and {@link OfflinePlayer} using the player
* UUID.
* @see MetadataStoreBase#disambiguate(Object, String)
* @param player the player
* @param metadataKey The name identifying the metadata value
* @return a unique metadata key
* @see MetadataStoreBase#disambiguate(Object, String)
*/
@Override
protected String disambiguate(OfflinePlayer player, String metadataKey) {

View file

@ -10,10 +10,10 @@ import org.bukkit.metadata.MetadataStoreBase;
public class WorldMetadataStore extends MetadataStoreBase<World> implements MetadataStore<World> {
/**
* Generates a unique metadata key for a {@link World} object based on the world UID.
* @see WorldMetadataStore#disambiguate(Object, String)
* @param world the world
* @param metadataKey The name identifying the metadata value
* @return a unique metadata key
* @see WorldMetadataStore#disambiguate(Object, String)
*/
@Override
protected String disambiguate(World world, String metadataKey) {