Minor patch

Addedcomment to package-scoped code
This commit is contained in:
Gabriel Tofvesson 2016-11-07 12:33:17 +04:00
parent 803fb55643
commit 02c4c7585d

View File

@ -17,7 +17,7 @@ public class Async<T> {
* @param o Object to invoke method on. * @param o Object to invoke method on.
* @param method Method to invoke. * @param method Method to invoke.
* @param params Required parameters. * @param params Required parameters.
*/ */6
public Async(final Object o, final Method method, final Object... params){ public Async(final Object o, final Method method, final Object... params){
method.setAccessible(true); method.setAccessible(true);
task = new Thread(()-> { task = new Thread(()-> {
@ -67,7 +67,10 @@ public class Async<T> {
*/ */
public Async(Constructor<T> c){ this(c, (Object[]) null); } public Async(Constructor<T> 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. * Await completion of async task. Blocks thread if task isn't complete.