Make the comments accurate.

git-svn-id: https://svn.verisignlabs.com/jdnssec/tools/trunk@139 4cbd57fe-54e5-0310-bd9a-f30fe5ea5e6e
This commit is contained in:
David Blacka 2009-02-08 17:32:58 +00:00
parent 865fcf09bf
commit 971d13d81f
1 changed files with 3 additions and 3 deletions

View File

@ -183,8 +183,8 @@ public class ZoneFormat
while ((r = master.nextRecord()) != null)
{
// This is a relatively clumsy way to lower-case all of the Names in the
// zone.
// Normalize each record by round-tripping it through canonical wire line
// format. Mostly this just lowercases names that are subject to it.
byte[] wire = r.toWireCanonical();
Record canon_record = Record.fromWire(wire, Section.ANSWER);
res.add(canon_record);
@ -195,7 +195,7 @@ public class ZoneFormat
private static void formatZone(List zone)
{
// Sort both zones.
// Put the zone into a consistent (name and RR type) order.
RecordComparator cmp = new RecordComparator();
Collections.sort(zone, cmp);