Eliminate implicit boxing
[netconf.git] / netconf / netconf-topology-singleton / src / main / java / org / opendaylight / netconf / topology / singleton / impl / actors / ReadAdapter.java
index 22e60a3cb1607972c70c0d4474f9d230cd2d7847..c7a7d232c0c6329651d95f3961856dd125f363d9 100644 (file)
@@ -74,7 +74,7 @@ class ReadAdapter {
             @Override
             public void onSuccess(final Boolean result) {
                 if (result == null) {
-                    sender.tell(false, self);
+                    sender.tell(Boolean.FALSE, self);
                 } else {
                     sender.tell(result, self);
                 }