From 27bf571d6413c3cc6a5d664b5bddd38d21d7b1cd Mon Sep 17 00:00:00 2001 From: EVE Date: Mon, 13 Mar 2017 16:42:21 -0400 Subject: Formatting --- BJC-Utils2/src/main/java/bjc/utils/funcutils/FuncUtils.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'BJC-Utils2/src/main/java/bjc/utils/funcutils/FuncUtils.java') diff --git a/BJC-Utils2/src/main/java/bjc/utils/funcutils/FuncUtils.java b/BJC-Utils2/src/main/java/bjc/utils/funcutils/FuncUtils.java index 679af52..3eb086b 100644 --- a/BJC-Utils2/src/main/java/bjc/utils/funcutils/FuncUtils.java +++ b/BJC-Utils2/src/main/java/bjc/utils/funcutils/FuncUtils.java @@ -16,13 +16,13 @@ public class FuncUtils { * function * * @param - * The initial type of the function + * The initial type of the function * @param - * The intermediate type of the function + * The intermediate type of the function * @param - * The terminal type of the function + * The terminal type of the function * @param func - * The function to transform + * The function to transform * @return The function transformed into a unary function returning a * function */ @@ -36,9 +36,9 @@ public class FuncUtils { * Do the specified action the specified number of times * * @param nTimes - * The number of times to do the action + * The number of times to do the action * @param cons - * The action to perform + * The action to perform */ public static void doTimes(int nTimes, Consumer cons) { for (int i = 0; i < nTimes; i++) { -- cgit v1.2.3