From 7bbc3b4c159eb50f6286ccbcc8da6af9f5a8fb06 Mon Sep 17 00:00:00 2001 From: Ben Culkin Date: Mon, 13 Apr 2020 18:45:06 -0400 Subject: Cleanup pass Pass to do some cleanup --- src/main/java/bjc/everge/IntHolder.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/main/java/bjc/everge/IntHolder.java') 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; -- cgit v1.2.3