mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-26 07:06:44 +01:00
Added inbox manager
This commit is contained in:
parent
e61a5f4505
commit
ade657b1af
@ -0,0 +1,12 @@
|
||||
package com.intellectualcrafters.plot.object.comment;
|
||||
|
||||
import java.util.HashMap;
|
||||
|
||||
|
||||
public class InboxManager {
|
||||
public static HashMap<String, CommentInbox> inboxes = new HashMap<>();
|
||||
|
||||
public static void addInbox(String name, CommentInbox inbox) {
|
||||
inboxes.put(name.toLowerCase(), inbox);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user