mirror of
https://github.com/WiIIiam278/HuskSync.git
synced 2025-12-21 07:49:13 +00:00
Slightly improve BukkitData.Items#setContents method
This commit is contained in:
@@ -95,14 +95,9 @@ public abstract class BukkitData implements Data {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void setContents(@NotNull Data.Items contents) {
|
public void setContents(@NotNull Data.Items contents) {
|
||||||
System.arraycopy(
|
this.setContents(((BukkitData.Items) contents).getContents());
|
||||||
((BukkitData.Items) contents).getContents(),
|
|
||||||
0, this.contents,
|
|
||||||
0, this.contents.length
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@SuppressWarnings("unused")
|
|
||||||
public void setContents(@NotNull ItemStack[] contents) {
|
public void setContents(@NotNull ItemStack[] contents) {
|
||||||
System.arraycopy(contents, 0, this.contents, 0, this.contents.length);
|
System.arraycopy(contents, 0, this.contents, 0, this.contents.length);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user