From: David ‘Bombe’ Roden Date: Mon, 14 Apr 2008 20:51:04 +0000 (+0000) Subject: make constructor package-private X-Git-Tag: v0.1.1~167 X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=460b437b16e31ccc70c8b97818dbbae0a94c8f76;p=jFCPlib.git make constructor package-private git-svn-id: http://trooper/svn/projects/jFCPlib/branch/high-level-client@816 c3eda9e8-030b-0410-8277-bc7414b0a119 --- diff --git a/src/net/pterodactylus/fcp/highlevel/HighLevelCallback.java b/src/net/pterodactylus/fcp/highlevel/HighLevelCallback.java index 3f0cd39..b43a8cc 100644 --- a/src/net/pterodactylus/fcp/highlevel/HighLevelCallback.java +++ b/src/net/pterodactylus/fcp/highlevel/HighLevelCallback.java @@ -44,6 +44,12 @@ public class HighLevelCallback { private R result = null; /** + * Package-private construtor. + */ + HighLevelCallback() { + } + + /** * Adds a callback listener to this callback. The callback listener will be * called as soon as the result of the operation is known. If the result is * already known, the listener will be called immediately. Also, as soon as