[Rename] Event, Core 调整类名;

[Rename] DefaultEventHandlerRegistry -> DefaultHandlerRegistry;
[Rename] EventHandlerRegistry -> HandlerRegistry;
This commit is contained in:
2021-01-01 09:54:57 +08:00
parent 1d8148f4c7
commit 8c12f17329
2 changed files with 3 additions and 3 deletions

View File

@ -25,7 +25,7 @@ import java.util.concurrent.CopyOnWriteArraySet;
* 默认的事件处理注册器.
* @author LamGC
*/
public class DefaultEventHandlerRegistry implements EventHandlerRegistry {
public class DefaultHandlerRegistry implements HandlerRegistry {
private final Map<Method, Object> instanceMap = new Hashtable<>();
private final Map<Class<? extends EventObject>, Set<Method>> eventHandlerMap = new Hashtable<>();