Cadiboo / Example-Mod

An example mod created to try and get new modders to use good code practices

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Redundant full qualification

JamesYeoman opened this issue · comments

/**
* Sets the {@link net.minecraftforge.registries.IForgeRegistryEntry.Impl#setRegistryName(net.minecraft.util.ResourceLocation) Registry Name} and the {@link net.minecraft.item.Item#setTranslationKey(String) Translation Key} (if applicable) for the entry
*
* @param entry the {@link net.minecraftforge.registries.IForgeRegistryEntry.Impl IForgeRegistryEntry.Impl<?>} to set the names for
* @param name the name for the entry that the registry name is derived from
* @return the entry
*/

Since you have the referenced classes already imported for the class, you don't need to fully qualify the classes