Add comment about ItemMetaBuilder#clone

This commit is contained in:
themode 2021-04-04 20:50:06 +02:00
parent d1d973018e
commit d34d3a2b50

View File

@ -144,6 +144,7 @@ public abstract class ItemMetaBuilder implements Cloneable {
deepClone(builder);
return builder;
} catch (CloneNotSupportedException e) {
// Should never happen, because ItemMetaBuilder implements Cloneable
e.printStackTrace();
throw new UnsupportedOperationException("Weird thing happened");
}