Fixing internal javadoc
This commit is contained in:
@@ -9,9 +9,9 @@ public interface IOreListener
|
||||
* Called with various items registered in the dictionary.
|
||||
* AppEng.oreDictionary.observe(...) to register them.
|
||||
*
|
||||
* @param Name
|
||||
* @param item
|
||||
* @param name name of ore
|
||||
* @param item item with name
|
||||
*/
|
||||
void oreRegistered(String Name, ItemStack item);
|
||||
void oreRegistered(String name, ItemStack item);
|
||||
|
||||
}
|
||||
|
||||
@@ -22,8 +22,8 @@ public class OreDictionaryHandler
|
||||
/**
|
||||
* Just limit what items are sent to the final listeners, I got sick of strange items showing up...
|
||||
*
|
||||
* @param name
|
||||
* @return
|
||||
* @param name name about cared item
|
||||
* @return true if it should care
|
||||
*/
|
||||
private boolean shouldCare(String name)
|
||||
{
|
||||
@@ -50,7 +50,7 @@ public class OreDictionaryHandler
|
||||
* Adds a new IOreListener and immediately notifies it of any previous ores, any ores added latter will be added at
|
||||
* that point.
|
||||
*
|
||||
* @param n
|
||||
* @param n to be added ore listener
|
||||
*/
|
||||
public void observe(IOreListener n)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user