Other files ignored by Codecov
Showing 3 of 4 files from the diff.
@@ -70,7 +70,7 @@
Loading
70 | 70 | ||
71 | 71 | public static String ERR_WF_PI_MISSING_TARGET = "Missing processing instruction target"; |
|
72 | 72 | public static String ERR_WF_PI_XML_TARGET = "Illegal processing instruction target (\"{0}\"); 'xml' (case insensitive) is reserved by the specs."; |
|
73 | - | public static String ERR_WF_PI_XML_MISSING_SPACE = "excepted either space or \"?>\" after PI target"; |
|
73 | + | public static String ERR_WF_PI_XML_MISSING_SPACE = "expected either space or \"?>\" after PI target"; |
|
74 | 74 | ||
75 | 75 | // // // Entity problems: |
|
76 | 76 |
@@ -2227,7 +2227,7 @@
Loading
2227 | 2227 | */ |
|
2228 | 2228 | /* |
|
2229 | 2229 | } else if (c != '>') { |
|
2230 | - | throwDTDUnexpectedChar(c, "; excepted either '>' closing ATTLIST declaration, or a white space character separating individual attribute declarations"); |
|
2230 | + | throwDTDUnexpectedChar(c, "; expected either '>' closing ATTLIST declaration, or a white space character separating individual attribute declarations"); |
|
2231 | 2231 | */ |
|
2232 | 2232 | } |
|
2233 | 2233 | if (c == '>') { |
@@ -2299,7 +2299,7 @@
Loading
2299 | 2299 | +keyw+"' (for element <"+elemName+">); expected ANY or EMPTY"); |
|
2300 | 2300 | } while (false); |
|
2301 | 2301 | } else { |
|
2302 | - | throwDTDUnexpectedChar(c, ": excepted '(' to start content specification for element <"+elemName+">"); |
|
2302 | + | throwDTDUnexpectedChar(c, ": expected '(' to start content specification for element <"+elemName+">"); |
|
2303 | 2303 | } |
|
2304 | 2304 | ||
2305 | 2305 | // Ok, still need the trailing gt-char to close the declaration: |
@@ -1945,7 +1945,7 @@
Loading
1945 | 1945 | // Plus, need the bracket too: |
|
1946 | 1946 | char c = getNextCharFromCurrent(SUFFIX_IN_CDATA); |
|
1947 | 1947 | if (c != '[') { |
|
1948 | - | throwUnexpectedChar(c, "excepted '[' after '<![CDATA'"); |
|
1948 | + | throwUnexpectedChar(c, "expected '[' after '<![CDATA'"); |
|
1949 | 1949 | } |
|
1950 | 1950 | // Cool, that's it! |
|
1951 | 1951 | } |
@@ -3080,7 +3080,7 @@
Loading
3080 | 3080 | if (c <= CHAR_SPACE) { |
|
3081 | 3081 | c = getNextInCurrAfterWS(SUFFIX_IN_ELEMENT, c); |
|
3082 | 3082 | } else if (c != '/' && c != '>') { |
|
3083 | - | throwUnexpectedChar(c, " excepted space, or '>' or \"/>\""); |
|
3083 | + | throwUnexpectedChar(c, " expected space, or '>' or \"/>\""); |
|
3084 | 3084 | } |
|
3085 | 3085 | ||
3086 | 3086 | if (c == '/') { |
@@ -3188,7 +3188,7 @@
Loading
3188 | 3188 | if (c <= CHAR_SPACE) { |
|
3189 | 3189 | c = getNextInCurrAfterWS(SUFFIX_IN_ELEMENT, c); |
|
3190 | 3190 | } else if (c != '/' && c != '>') { |
|
3191 | - | throwUnexpectedChar(c, " excepted space, or '>' or \"/>\""); |
|
3191 | + | throwUnexpectedChar(c, " expected space, or '>' or \"/>\""); |
|
3192 | 3192 | } |
|
3193 | 3193 | if (c == '/') { |
|
3194 | 3194 | c = getNextCharFromCurrent(SUFFIX_IN_ELEMENT); |
@@ -4027,7 +4027,7 @@
Loading
4027 | 4027 | // Ok, let's just verify we get space then |
|
4028 | 4028 | char c = getNextCharFromCurrent(SUFFIX_IN_XML_DECL); |
|
4029 | 4029 | if (!isSpaceChar(c)) { |
|
4030 | - | throwUnexpectedChar(c, "excepted a space in xml declaration after 'xml'"); |
|
4030 | + | throwUnexpectedChar(c, "expected a space in xml declaration after 'xml'"); |
|
4031 | 4031 | } |
|
4032 | 4032 | return handleMultiDocStart(START_DOCUMENT); |
|
4033 | 4033 | } |
Files | Complexity | Coverage |
---|---|---|
src/main/java/com/ctc/wstx | 51.12% | 60.51% |
Project Totals (168 files) | 51.12% | 60.51% |
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.