Commits
md_5 authored 3d79bf2c955
10 10 | * and a key. |
11 11 | */ |
12 12 | public final class NamespacedKey { |
13 13 | |
14 14 | /** |
15 15 | * The namespace representing all inbuilt keys. |
16 16 | */ |
17 17 | public static final String MINECRAFT = "minecraft"; |
18 18 | /** |
19 19 | * The namespace representing all keys generated by Bukkit for backwards |
20 - | * compatability measures. |
20 + | * compatibility measures. |
21 21 | */ |
22 22 | public static final String BUKKIT = "bukkit"; |
23 23 | // |
24 24 | private final String namespace; |
25 25 | private final String key; |
26 26 | |
27 27 | /** |
28 28 | * Create a key in a specific namespace. |
29 29 | * |
30 30 | * @param namespace |