// 
// Decompiled by Procyon v0.6.0
// 

package com.hypixel.hytale.server.core.modules.i18n.event;

import javax.annotation.Nonnull;
import java.util.Map;
import com.hypixel.hytale.event.IEvent;

public class MessagesUpdated implements IEvent<Void>
{
    private final Map<String, Map<String, String>> changedMessages;
    private final Map<String, Map<String, String>> removedMessages;
    
    public MessagesUpdated(final Map<String, Map<String, String>> changedMessages, final Map<String, Map<String, String>> removedMessages) {
        this.changedMessages = changedMessages;
        this.removedMessages = removedMessages;
    }
    
    public Map<String, Map<String, String>> getChangedMessages() {
        return this.changedMessages;
    }
    
    public Map<String, Map<String, String>> getRemovedMessages() {
        return this.removedMessages;
    }
    
    @Nonnull
    @Override
    public String toString() {
        return "MessagesUpdated{changedMessages=" + String.valueOf(this.changedMessages) + ", removedMessages=" + String.valueOf(this.removedMessages);
    }
}
