summaryrefslogtreecommitdiff
path: root/cs/src/Ice/StringUtil.cs
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2004-03-29 03:40:57 +0000
committerMichi Henning <michi@zeroc.com>2004-03-29 03:40:57 +0000
commita766495f65576d8e2e9a6eacd00c25c85547115d (patch)
tree4a22f9c62e21da98894f8df0fe75b5fbda90b266 /cs/src/Ice/StringUtil.cs
parentRemoved warning about unused variable. (diff)
downloadice-a766495f65576d8e2e9a6eacd00c25c85547115d.tar.bz2
ice-a766495f65576d8e2e9a6eacd00c25c85547115d.tar.xz
ice-a766495f65576d8e2e9a6eacd00c25c85547115d.zip
*** empty log message ***
Diffstat (limited to 'cs/src/Ice/StringUtil.cs')
-rwxr-xr-xcs/src/Ice/StringUtil.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/cs/src/Ice/StringUtil.cs b/cs/src/Ice/StringUtil.cs
index d0b1f624b3c..c917ddf439c 100755
--- a/cs/src/Ice/StringUtil.cs
+++ b/cs/src/Ice/StringUtil.cs
@@ -242,7 +242,7 @@ namespace IceInternal
start++;
int len = s.Length;
int pos;
- while (start < len && (pos = s.IndexOf(quoteChar, start)) != -1)
+ while(start < len && (pos = s.IndexOf(quoteChar, start)) != -1)
{
if(s[pos - 1] != '\\')
{