Showing 1 of 1 files from the diff.
@@ -1662,22 +1662,17 @@
Loading
1662 | 1662 | // Ok, should have updated the input source by now |
|
1663 | 1663 | continue main_loop; |
|
1664 | 1664 | } |
|
1665 | - | ||
1666 | - | if (c <= 0xFFFF) { |
|
1667 | - | ||
1668 | - | } else{ |
|
1669 | - | if (d <= 0xFFFF) { |
|
1670 | - | c = (char) d; |
|
1671 | - | } else { |
|
1672 | - | // Need more room? |
|
1673 | - | if (outPtr >= outBuf.length) { |
|
1674 | - | outBuf = tb.finishCurrentSegment(); |
|
1675 | - | outPtr = 0; |
|
1676 | - | } |
|
1677 | - | d -= 0x10000; |
|
1678 | - | outBuf[outPtr++] = (char) ((d >> 10) + 0xD800);; |
|
1679 | - | c = (char) ((d & 0x3FF) + 0xDC00); |
|
1665 | + | if (d <= 0xFFFF) { |
|
1666 | + | c = (char) d; |
|
1667 | + | } else { |
|
1668 | + | // Need more room? |
|
1669 | + | if (outPtr >= outBuf.length) { |
|
1670 | + | outBuf = tb.finishCurrentSegment(); |
|
1671 | + | outPtr = 0; |
|
1680 | 1672 | } |
|
1673 | + | d -= 0x10000; |
|
1674 | + | outBuf[outPtr++] = (char) ((d >> 10) + 0xD800);; |
|
1675 | + | c = (char) ((d & 0x3FF) + 0xDC00); |
|
1681 | 1676 | } |
|
1682 | 1677 | } else if (c == '<') { |
|
1683 | 1678 | throwDTDUnexpectedChar(c, SUFFIX_IN_DEF_ATTR_VALUE); |
Files | Complexity | Coverage |
---|---|---|
src/main/java/com/ctc/wstx | 51.14% | 60.53% |
Project Totals (168 files) | 51.14% | 60.53% |
Sunburst
The inner-most circle is the entire project, moving away from the center are folders then, finally, a single file.
The size and color of each slice is representing the number of statements and the coverage, respectively.
Icicle
The top section represents the entire project. Proceeding with folders and finally individual files.
The size and color of each slice is representing the number of statements and the coverage, respectively.