make constructor package-private
authorDavid ‘Bombe’ Roden <bombe@freenetproject.org>
Mon, 14 Apr 2008 20:51:04 +0000 (20:51 +0000)
committerDavid ‘Bombe’ Roden <bombe@freenetproject.org>
Mon, 14 Apr 2008 20:51:04 +0000 (20:51 +0000)
git-svn-id: http://trooper/svn/projects/jFCPlib/branch/high-level-client@816 c3eda9e8-030b-0410-8277-bc7414b0a119

src/net/pterodactylus/fcp/highlevel/HighLevelCallback.java

index 3f0cd39..b43a8cc 100644 (file)
@@ -44,6 +44,12 @@ public class HighLevelCallback<R extends HighLevelResult> {
        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