From 398e2dccf9059a1a49a69f0b0b19e727204d9ebb Mon Sep 17 00:00:00 2001 From: nathan Date: Sun, 14 Feb 2016 14:36:10 +0100 Subject: [PATCH] doc cleanup --- Dorkbox-Network/src/dorkbox/network/Configuration.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dorkbox-Network/src/dorkbox/network/Configuration.java b/Dorkbox-Network/src/dorkbox/network/Configuration.java index 279f5bf5..186d9066 100644 --- a/Dorkbox-Network/src/dorkbox/network/Configuration.java +++ b/Dorkbox-Network/src/dorkbox/network/Configuration.java @@ -46,7 +46,7 @@ class Configuration { *

* Specifically, It costs at least 2 bytes more to use remote method invocation than just sending the parameters. If the method has a * return value which is not {@link dorkbox.network.rmi.RemoteObject#setNonBlocking(boolean) ignored}, an extra byte is written. If the - * type of a parameter is not final (note primitives are final) then an extra byte is written for that parameter. + * type of a parameter is not final (primitives are final) then an extra byte is written for that parameter. */ public boolean rmiEnabled = false; @@ -56,6 +56,7 @@ class Configuration { */ public Executor rmiExecutor = null; + public Configuration() { }