/* * Decompiled with CFR 0.152. */ package net.minecraft.util.context; import net.minecraft.resources.Identifier; public class ContextKey { private final Identifier name; public ContextKey(Identifier name) { this.name = name; } public static ContextKey vanilla(String name) { return new ContextKey(Identifier.withDefaultNamespace(name)); } public Identifier name() { return this.name; } public String toString() { return ""; } }