From: adetalhouet Date: Tue, 22 Sep 2015 21:25:58 +0000 (-0400) Subject: Fix typo in thrown exception in RestconfImpl.java X-Git-Tag: release/lithium-sr2~5 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=23e756cc4a84c2d0ce7dbd33d5ae4f93f1ad3d9a;p=controller.git Fix typo in thrown exception in RestconfImpl.java Change-Id: I81df54043732a5c332d8f8b8209f66c15993cbf1 Signed-off-by: adetalhouet --- diff --git a/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/restconf/impl/RestconfImpl.java b/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/restconf/impl/RestconfImpl.java index c90add77a4..bd09fababa 100644 --- a/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/restconf/impl/RestconfImpl.java +++ b/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/restconf/impl/RestconfImpl.java @@ -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 response;