diff options
author | Jose <jose@zeroc.com> | 2017-04-14 15:53:44 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2017-04-14 15:53:44 +0200 |
commit | 143f66813fc76abd4941f9bf2079cd3b92ab61fe (patch) | |
tree | b9d4022213a996693926d8bcff371bf91171dd38 /js/src/Ice/StringUtil.js | |
parent | Add icegrid to icegridadmin MSBuild dependencies (diff) | |
download | ice-143f66813fc76abd4941f9bf2079cd3b92ab61fe.tar.bz2 ice-143f66813fc76abd4941f9bf2079cd3b92ab61fe.tar.xz ice-143f66813fc76abd4941f9bf2079cd3b92ab61fe.zip |
Minor JS fixes
Diffstat (limited to 'js/src/Ice/StringUtil.js')
-rw-r--r-- | js/src/Ice/StringUtil.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/js/src/Ice/StringUtil.js b/js/src/Ice/StringUtil.js index 0f125dc3e02..875a8be63ca 100644 --- a/js/src/Ice/StringUtil.js +++ b/js/src/Ice/StringUtil.js @@ -419,7 +419,7 @@ function checkChar(s, pos) msg += " has invalid ordinal value" + c; throw new Error(msg); } - return s.charAt(pos) + return s.charAt(pos); } // // Decode the character or escape sequence starting at start and appends it to result; @@ -483,13 +483,13 @@ function decodeChar(s, start, end, special, result) case 'r': { ++start; - result.push("\r") + result.push("\r"); break; } case 't': { ++start; - result.push("\t") + result.push("\t"); break; } case 'v': |