This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.buoobuoo.minecraftenhanced.core.util.unicode; | |
| public class UnicodeSpaceUtil { | |
| public static final String NEG1 ="\uF801"; | |
| public static final String NEG2 ="\uF802"; | |
| public static final String NEG4 ="\uF804"; | |
| public static final String NEG8 ="\uF808"; | |
| public static final String NEG16 ="\uF809"; | |
| public static final String NEG32 ="\uF80A"; | |
| public static final String NEG64 ="\uF80B"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.clusterfactions.clustercore.core.items.types; | |
| import java.util.UUID; | |
| import org.bukkit.Bukkit; | |
| import org.bukkit.Material; | |
| import org.bukkit.entity.Player; | |
| import org.bukkit.event.Event; | |
| import org.bukkit.event.EventHandler; | |
| import org.bukkit.event.EventPriority; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package org.candycloud.candyskycore.servletcommons.helper.tablist; | |
| import com.comphenix.protocol.reflect.FieldUtils; | |
| import com.mojang.authlib.GameProfile; | |
| import com.mojang.authlib.properties.Property; | |
| import net.minecraft.server.v1_16_R3.*; | |
| import org.bukkit.Bukkit; | |
| import java.lang.reflect.Constructor; | |
| import java.util.ArrayList; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.clusterfactions.clustercore.core.inventory.impl.block; | |
| import java.util.ArrayList; | |
| import java.util.Arrays; | |
| import java.util.HashMap; | |
| import java.util.Iterator; | |
| import java.util.List; | |
| import java.util.Map; | |
| import java.util.Map.Entry; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.clusterfactions.clustercore.persistence.serialization; | |
| import java.io.ByteArrayInputStream; | |
| import java.io.ByteArrayOutputStream; | |
| import org.bukkit.inventory.ItemStack; | |
| import org.bukkit.util.io.BukkitObjectInputStream; | |
| import org.bukkit.util.io.BukkitObjectOutputStream; | |
| import org.yaml.snakeyaml.external.biz.base64Coder.Base64Coder; |