The following document contains the results of PMD's CPD 4.1.
| File | Line |
|---|---|
| org\apache\commons\id\uuid\state\ReadWriteFileStateImpl.java | 54 |
| org\apache\commons\id\uuid\state\ReadWriteFileStateImpl.java | 82 |
private String genXML(Set nodes, long timestamp) throws IOException {
Iterator it = nodes.iterator();
StringBuffer buf = new StringBuffer(1024);
buf.append(StateHelper.XML_DOC_START);
buf.append(getSynchInterval());
buf.append(StateHelper.XML_DOC_START_END);
while (it.hasNext()) {
Node n = (Node) it.next();
buf.append(StateHelper.XML_NODE_TAG_START);
buf.append(StateHelper.encodeMACAddress(n.getNodeIdentifier()));
buf.append(StateHelper.XML_NODE_TAG_AFTER_ID);
buf.append(n.getClockSequence());
buf.append(StateHelper.XML_NODE_TAG_AFTER_CSEQ);
buf.append(timestamp);
| |