summaryrefslogtreecommitdiff
path: root/src/main/java/bjc/everge/IntHolder.java
diff options
context:
space:
mode:
authorBen Culkin <scorpress@gmail.com>2020-04-13 18:45:06 -0400
committerBen Culkin <scorpress@gmail.com>2020-04-13 18:45:06 -0400
commit7bbc3b4c159eb50f6286ccbcc8da6af9f5a8fb06 (patch)
tree24c628a479fc5ae790b2dbd292581bed6e149ed1 /src/main/java/bjc/everge/IntHolder.java
parent10b6688ef898285924026e695240a1de2f332bcb (diff)
Cleanup pass
Pass to do some cleanup
Diffstat (limited to 'src/main/java/bjc/everge/IntHolder.java')
-rw-r--r--src/main/java/bjc/everge/IntHolder.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/bjc/everge/IntHolder.java b/src/main/java/bjc/everge/IntHolder.java
index b72e0e7..31c2578 100644
--- a/src/main/java/bjc/everge/IntHolder.java
+++ b/src/main/java/bjc/everge/IntHolder.java
@@ -22,7 +22,7 @@ public class IntHolder {
* Create a new int-holder set to a value.
*
* @param i
- * The value to set the int to.
+ * The value to set the int to.
*/
public IntHolder(int i) {
val = i;
@@ -41,7 +41,7 @@ public class IntHolder {
* Increment the value by an amount and return it.
*
* @param i
- * The amount to increment by.
+ * The amount to increment by.
*
* @return The value of the holder.
*/
@@ -62,9 +62,9 @@ public class IntHolder {
/**
* Set the value.
- *
+ *
* @param i
- * The value to set it to.
+ * The value to set it to.
*/
public void set(int i) {
val = i;