mirror of
https://github.com/PaperMC/Paper.git
synced 2025-03-13 11:18:23 +01:00
Update Maven plugins
By: md_5 <git@md-5.net>
This commit is contained in:
parent
bc5ed0e911
commit
a388fc3a6c
5 changed files with 7 additions and 7 deletions
|
@ -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>
|
||||
|
|
|
@ -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) {
|
||||
|
|
|
@ -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) {
|
||||
|
|
|
@ -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) {
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue