ec98b19ffb
(Items done!)
17 lines
305 B
Java
17 lines
305 B
Java
package cofh.api.core;
|
|
|
|
/**
|
|
* Dummy class used to initialize Cape and Skin Registries to prevent accidental NPEs.
|
|
*
|
|
* @author Zeldo Kavira
|
|
*
|
|
*/
|
|
public class NullSimpleRegistry implements ISimpleRegistry {
|
|
|
|
@Override
|
|
public boolean register(String playerName, String URL) {
|
|
|
|
return false;
|
|
}
|
|
|
|
}
|