From 8a8b457c98e207d809a7616e73eb59bfe197a7a5 Mon Sep 17 00:00:00 2001 From: bculkin2442 Date: Thu, 31 Mar 2016 11:43:21 -0400 Subject: More code maintenance --- BJC-Utils2/src/main/java/bjc/utils/data/IPair.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'BJC-Utils2/src/main/java/bjc/utils/data/IPair.java') diff --git a/BJC-Utils2/src/main/java/bjc/utils/data/IPair.java b/BJC-Utils2/src/main/java/bjc/utils/data/IPair.java index fcf5618..e2ee6a4 100644 --- a/BJC-Utils2/src/main/java/bjc/utils/data/IPair.java +++ b/BJC-Utils2/src/main/java/bjc/utils/data/IPair.java @@ -25,23 +25,23 @@ public interface IPair { * @param * The new right type of the pair * - * @param lf + * @param leftTransformer * The function to apply to the left value. - * @param rf + * @param rightTransformer * The function to apply to the right value. * @return A new pair containing the two modified values. */ - public IPair apply(Function lf, - Function rf); + public IPair apply(Function leftTransformer, + Function rightTransformer); /** * Execute an action with the values of this pair. Has no effect on the * internal contents * - * @param bc + * @param action * The action to execute on the values */ - public void doWith(BiConsumer bc); + public void doWith(BiConsumer action); /** * Collapse this pair to a single value. Does not change the internal @@ -50,9 +50,9 @@ public interface IPair { * @param * The resulting type after merging * - * @param bf + * @param merger * The function to use to collapse the pair. * @return The collapsed value. */ - public E merge(BiFunction bf); + public E merge(BiFunction merger); } \ No newline at end of file -- cgit v1.2.3