use the perfectly OK (now) TypeMap.toString() method.
This commit is contained in:
parent
3da308c4b9
commit
a45f5d1df7
@ -242,14 +242,8 @@ public class ProtoNSEC3
|
|||||||
sb.append(' ');
|
sb.append(' ');
|
||||||
String nextstr = (next == null) ? "(null)" : b32.toString(next);
|
String nextstr = (next == null) ? "(null)" : b32.toString(next);
|
||||||
sb.append(nextstr);
|
sb.append(nextstr);
|
||||||
|
sb.append(' ');
|
||||||
int[] types = getTypes();
|
sb.append(typemap.toString());
|
||||||
for (int i = 0; i < types.length; i++)
|
|
||||||
{
|
|
||||||
sb.append(" ");
|
|
||||||
sb.append(Type.string(types[i]));
|
|
||||||
}
|
|
||||||
if (originalOwner != null) sb.append(" ; " + originalOwner);
|
|
||||||
|
|
||||||
return sb.toString();
|
return sb.toString();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user