From 02c4c7585dc6983366893e763e31616ce80d6a1f Mon Sep 17 00:00:00 2001 From: FuckYou Date: Mon, 7 Nov 2016 12:33:17 +0400 Subject: [PATCH] Minor patch Addedcomment to package-scoped code --- src/com/tofvesson/async/Async.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/com/tofvesson/async/Async.java b/src/com/tofvesson/async/Async.java index 4790597..22e414d 100644 --- a/src/com/tofvesson/async/Async.java +++ b/src/com/tofvesson/async/Async.java @@ -17,7 +17,7 @@ public class Async { * @param o Object to invoke method on. * @param method Method to invoke. * @param params Required parameters. - */ + */6 public Async(final Object o, final Method method, final Object... params){ method.setAccessible(true); task = new Thread(()-> { @@ -67,7 +67,10 @@ public class Async { */ public Async(Constructor c){ this(c, (Object[]) null); } - Async() {task = null;} // Only package-scoped because it should only be used when overriding standard construction + /** + * WARNING: Package-scoped because it should only be used when overriding standard construction. Should not bw used haphazardly! + */ + Async() {task = null;} /** * Await completion of async task. Blocks thread if task isn't complete.