remove debugging

This commit is contained in:
Miek Gieben 2012-01-22 14:59:31 +01:00
parent abd8d063f4
commit 04b30732ac
2 changed files with 1 additions and 2 deletions

View File

@ -4,7 +4,7 @@ Must of the stuff is working, but there is a list of smaller
things that need to be fixed.
* Parsing
* TXT record isn't parsed correctly
* TXT record isn't parsed correctly, if followed by a comment
- Need to make " important in the parsing
* Speed, we can always go faster. A simple reflect server now hits 30K qps

View File

@ -531,7 +531,6 @@ func setTXT(h RR_Header, c chan lex, f string) (RR, *ParseError) {
l := <-c
var s string
for l.value != _NEWLINE && l.value != _EOF {
println("tok", l.token)
switch l.value {
case _STRING:
s += l.token