From 82951e37e10b282d9a7c89f4662990b64949c943 Mon Sep 17 00:00:00 2001 From: bculkin2442 Date: Mon, 29 Feb 2016 10:41:17 -0500 Subject: General code cleanup --- BJC-Utils2/src/main/java/bjc/utils/data/IHolder.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'BJC-Utils2/src/main/java/bjc/utils/data/IHolder.java') diff --git a/BJC-Utils2/src/main/java/bjc/utils/data/IHolder.java b/BJC-Utils2/src/main/java/bjc/utils/data/IHolder.java index aa7d5bd..b6e752b 100644 --- a/BJC-Utils2/src/main/java/bjc/utils/data/IHolder.java +++ b/BJC-Utils2/src/main/java/bjc/utils/data/IHolder.java @@ -21,7 +21,7 @@ public interface IHolder { * The transformation to apply * @return A holder with the transformed value */ - IHolder map(Function f); + public IHolder map(Function f); /** * Apply the given transformation to the held value. Returns the holder @@ -31,7 +31,7 @@ public interface IHolder { * The transform to apply to the value * @return The holder */ - IHolder transform(Function f); + public IHolder transform(Function f); /** * Returns a raw mapped value, not contained in a GenHolder @@ -40,6 +40,6 @@ public interface IHolder { * The function to use for mapping the value * @return The mapped value outside of a GenHolder */ - E unwrap(Function f); + public E unwrap(Function f); } \ No newline at end of file -- cgit v1.2.3