/**
* Loads the emoji shortcuts from the config.
*
* @param config The config to load emoji shortcuts from.
*/
private void loadShortcuts(FileConfiguration config) {
for (String key : config.getConfigurationSection("shortcuts").getKeys(false)) { // Gets all of the headers/keys in the shortcuts section
for (String shortcutListItem : config.getStringList("shortcuts." + key)) { // Gets all of the shortcuts for the key
shortcuts.put(shortcutListItem, ":" + key + ":");
}
}
}
EmojiHandler.java 文件源码
java
阅读 22
收藏 0
点赞 0
评论 0
项目:EmojiChat
作者:
评论列表
文章目录