summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/inventory/ItemStack.java
diff options
context:
space:
mode:
authorfeildmaster <admin@feildmaster.com>2012-06-03 05:40:54 -0500
committerfeildmaster <admin@feildmaster.com>2012-06-03 05:40:54 -0500
commit062a3df78d228bfad2cb3bb84e1b900893a0197e (patch)
treedcd642d3fc4533448dcd39520e3be0c9f93fb114 /src/main/java/org/bukkit/inventory/ItemStack.java
parentff198c25a80c030bf5d02399534f8d053c828511 (diff)
downloadbukkit-062a3df78d228bfad2cb3bb84e1b900893a0197e.tar
bukkit-062a3df78d228bfad2cb3bb84e1b900893a0197e.tar.gz
bukkit-062a3df78d228bfad2cb3bb84e1b900893a0197e.tar.lz
bukkit-062a3df78d228bfad2cb3bb84e1b900893a0197e.tar.xz
bukkit-062a3df78d228bfad2cb3bb84e1b900893a0197e.zip
Javadoc updates
Fixes BUKKIT-1653, Fixes BUKKIT-1383 and Fixes BUKKIT-1644
Diffstat (limited to 'src/main/java/org/bukkit/inventory/ItemStack.java')
-rw-r--r--src/main/java/org/bukkit/inventory/ItemStack.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/main/java/org/bukkit/inventory/ItemStack.java b/src/main/java/org/bukkit/inventory/ItemStack.java
index 165eca69..db7c5005 100644
--- a/src/main/java/org/bukkit/inventory/ItemStack.java
+++ b/src/main/java/org/bukkit/inventory/ItemStack.java
@@ -77,8 +77,8 @@ public class ItemStack implements Cloneable, ConfigurationSerializable {
}
/**
- * Sets the type of this item<br />
- * <br />
+ * Sets the type of this item
+ * <p />
* Note that in doing so you will reset the MaterialData for this stack
*
* @param type New type to set the items in this stack to
@@ -97,8 +97,8 @@ public class ItemStack implements Cloneable, ConfigurationSerializable {
}
/**
- * Sets the type id of this item<br />
- * <br />
+ * Sets the type id of this item
+ * <p />
* Note that in doing so you will reset the MaterialData for this stack
*
* @param type New type id to set the items in this stack to
@@ -274,7 +274,7 @@ public class ItemStack implements Cloneable, ConfigurationSerializable {
/**
* Adds the specified enchantments to this item stack.
- * <p>
+ * <p />
* This method is the same as calling {@link #addEnchantment(org.bukkit.enchantments.Enchantment, int)}
* for each element of the map.
*
@@ -288,7 +288,7 @@ public class ItemStack implements Cloneable, ConfigurationSerializable {
/**
* Adds the specified {@link Enchantment} to this item stack.
- * <p>
+ * <p />
* If this item stack already contained the given enchantment (at any level), it will be replaced.
*
* @param ench Enchantment to add
@@ -306,7 +306,7 @@ public class ItemStack implements Cloneable, ConfigurationSerializable {
/**
* Adds the specified enchantments to this item stack in an unsafe manner.
- * <p>
+ * <p />
* This method is the same as calling {@link #addUnsafeEnchantment(org.bukkit.enchantments.Enchantment, int)}
* for each element of the map.
*
@@ -320,9 +320,9 @@ public class ItemStack implements Cloneable, ConfigurationSerializable {
/**
* Adds the specified {@link Enchantment} to this item stack.
- * <p>
+ * <p />
* If this item stack already contained the given enchantment (at any level), it will be replaced.
- * <p>
+ * <p />
* This method is unsafe and will ignore level restrictions or item type. Use at your own
* discretion.
*