Cleaning up error messages, etc. in Java RMI part
[iot2.git] / iotjava / iotrmi / Java / IoTRMIComm.java
index 685bcc53053ea7ab12e6fe88046196bfb7e6dd55..6840214cc137b6a6744da9b614968e57a7f627f6 100644 (file)
@@ -63,7 +63,7 @@ public abstract class IoTRMIComm {
        /**
         * wakeUpThreadOnMethodCall() wakes up the correct thread when receiving method call
         */
-       public void wakeUpThreadOnMethodCall() {
+       private void wakeUpThreadOnMethodCall() {
 
                Thread thread = new Thread() {
                        public void run() {
@@ -87,7 +87,7 @@ public abstract class IoTRMIComm {
        /**
         * wakeUpThreadOnReturnValue() wakes up the correct thread when receiving return value
         */
-       public void wakeUpThreadOnReturnValue() {
+       private void wakeUpThreadOnReturnValue() {
 
                Thread thread = new Thread() {
                        public void run() {
@@ -115,7 +115,6 @@ public abstract class IoTRMIComm {
 
        /**
         * registerSkeleton() registers the skeleton to be woken up
-
         */
        public synchronized void registerSkeleton(int objectId, AtomicBoolean methodReceived) {