mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-26 15:16:45 +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