From ac34bc072c5836bbbde1021a7ec383ef7f3a8bb6 Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Sat, 6 Jun 2009 14:58:06 -0600 Subject: [PATCH] remove obsolete todo comments --- src/machine.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/machine.cpp b/src/machine.cpp index 760a54969c..fe5c3440cf 100644 --- a/src/machine.cpp +++ b/src/machine.cpp @@ -514,7 +514,6 @@ parseUtf8NonAscii(Thread* t, Stream& s, object bytesSoFar, unsigned byteCount, unsigned si = sourceIndex; while (true) { if (a & 0x80) { - // todo: handle non-ASCII characters properly if (a & 0x20) { // 3 bytes si += 2; @@ -566,7 +565,6 @@ parseUtf8(Thread* t, Stream& s, unsigned length) for (unsigned si = 0; si < length; ++si) { unsigned a = s.read1(); if (a & 0x80) { - // todo: handle non-ASCII characters properly if (a & 0x20) { // 3 bytes return parseUtf8NonAscii(t, s, value, vi, si, a);