Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--plugins/org.eclipse.tm.tcf.core/src/org/eclipse/tm/tcf/protocol/JSON.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.tm.tcf.core/src/org/eclipse/tm/tcf/protocol/JSON.java b/plugins/org.eclipse.tm.tcf.core/src/org/eclipse/tm/tcf/protocol/JSON.java
index 41f873a33..a156c340f 100644
--- a/plugins/org.eclipse.tm.tcf.core/src/org/eclipse/tm/tcf/protocol/JSON.java
+++ b/plugins/org.eclipse.tm.tcf.core/src/org/eclipse/tm/tcf/protocol/JSON.java
@@ -410,7 +410,7 @@ public final class JSON {
StringBuffer sb = new StringBuffer();
sb.append(vl);
while (true) {
- sb.append(cur_ch);
+ sb.append((char)cur_ch);
read();
if (cur_ch < '0' || cur_ch > '9') {
BigInteger n = new BigInteger(sb.toString());

Back to the top