aboutsummaryrefslogtreecommitdiffstats
path: root/src/java
diff options
context:
space:
mode:
authorJaven O'Neal <onealj@apache.org>2016-07-04 02:14:02 +0000
committerJaven O'Neal <onealj@apache.org>2016-07-04 02:14:02 +0000
commit20e2d685443f3125676a26164a7783679d703c75 (patch)
tree60c37667e38b48dcb29f4eef4a58e6c51e09fae5 /src/java
parent52f728ef2b3d8bfe24bfcd3c0bffdd0c7758e5f3 (diff)
downloadpoi-20e2d685443f3125676a26164a7783679d703c75.tar.gz
poi-20e2d685443f3125676a26164a7783679d703c75.zip
findbugs fixes
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1751195 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java')
-rw-r--r--src/java/org/apache/poi/util/BitField.java15
1 files changed, 5 insertions, 10 deletions
diff --git a/src/java/org/apache/poi/util/BitField.java b/src/java/org/apache/poi/util/BitField.java
index f171145b4e..90f60db9e3 100644
--- a/src/java/org/apache/poi/util/BitField.java
+++ b/src/java/org/apache/poi/util/BitField.java
@@ -126,8 +126,7 @@ public class BitField
* value; the results of using it for a multi-bit field is to
* determine whether *any* of its bits are set
*
- * @param holder the int data containing the bits we're interested
- * in
+ * @param holder the int data containing the bits we're interested in
*
* @return true if any of the bits are set, else false
*/
@@ -142,8 +141,7 @@ public class BitField
* isSet, in that all of the bits in a multi-bit set must be set
* for this method to return true
*
- * @param holder the int data containing the bits we're interested
- * in
+ * @param holder the int data containing the bits we're interested in
*
* @return true if all of the bits are set, else false
*/
@@ -156,8 +154,7 @@ public class BitField
/**
* Replace the bits with new values.
*
- * @param holder the int data containint the bits we're interested
- * in
+ * @param holder the int data containing the bits we're interested in
* @param value the new value for the specified bits
*
* @return the value of holder with the bits from the value
@@ -172,8 +169,7 @@ public class BitField
/**
* Replace the bits with new values.
*
- * @param holder the short data containing the bits we're
- * interested in
+ * @param holder the short data containing the bits we're interested in
* @param value the new value for the specified bits
*
* @return the value of holder with the bits from the value
@@ -188,8 +184,7 @@ public class BitField
/**
* Clear the bits.
*
- * @param holder the int data containing the bits we're interested
- * in
+ * @param holder the int data containing the bits we're interested in
*
* @return the value of holder with the specified bits cleared
* (set to 0)