Repository: camel Updated Branches: refs/heads/camel-2.12.x a1bc5694c -> c6f84bc03 refs/heads/camel-2.13.x c9a68ed94 -> e7c6a8e1e
CAMEL-7483 Fixed the SmppConfiguration issue with thanks to Abdelghani Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/e7c6a8e1 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/e7c6a8e1 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/e7c6a8e1 Branch: refs/heads/camel-2.13.x Commit: e7c6a8e1e81db20ebfaccb30a21ad7906e6149c1 Parents: c9a68ed Author: Willem Jiang <[email protected]> Authored: Fri Jun 6 19:57:25 2014 +0800 Committer: Willem Jiang <[email protected]> Committed: Fri Jun 6 20:01:28 2014 +0800 ---------------------------------------------------------------------- .../java/org/apache/camel/component/smpp/SmppConfiguration.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/e7c6a8e1/components/camel-smpp/src/main/java/org/apache/camel/component/smpp/SmppConfiguration.java ---------------------------------------------------------------------- diff --git a/components/camel-smpp/src/main/java/org/apache/camel/component/smpp/SmppConfiguration.java b/components/camel-smpp/src/main/java/org/apache/camel/component/smpp/SmppConfiguration.java index 141283e..c346fc5 100644 --- a/components/camel-smpp/src/main/java/org/apache/camel/component/smpp/SmppConfiguration.java +++ b/components/camel-smpp/src/main/java/org/apache/camel/component/smpp/SmppConfiguration.java @@ -122,7 +122,7 @@ public class SmppConfiguration implements Cloneable { } public void setDataCoding(byte dataCoding) { - this.alphabet = dataCoding; + this.dataCoding = dataCoding; } public byte getAlphabet() {
