Fix typo in thrown exception in RestconfImpl.java 16/27316/3
authoradetalhouet <adetalhouet@inocybe.com>
Tue, 22 Sep 2015 21:25:58 +0000 (17:25 -0400)
committerGerrit Code Review <gerrit@opendaylight.org>
Thu, 24 Sep 2015 11:35:10 +0000 (11:35 +0000)
Change-Id: I81df54043732a5c332d8f8b8209f66c15993cbf1
Signed-off-by: adetalhouet <adetalhouet@inocybe.com>
opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/restconf/impl/RestconfImpl.java

index c90add77a474275e3dcfa42534c6434dbb870a85..bd09fababa90bf7540c6016e970b44408acae7d5 100644 (file)
@@ -609,7 +609,7 @@ public class RestconfImpl implements RestconfService {
         if (rpc.getInput() != null) {
             LOG.debug("RPC " + rpc + " does not need input value.");
             // FIXME : find a correct Error from specification
-            throw new IllegalStateException("RPC " + rpc + " does'n need input value!");
+            throw new IllegalStateException("RPC " + rpc + " doesn't need input value!");
         }
 
         final CheckedFuture<DOMRpcResult, DOMRpcException> response;