(String n1, boolean prop, String n2)
| 100 | } |
| 101 | |
| 102 | private final boolean isProp(String n1, boolean prop, String n2) { |
| 103 | if (!n1.startsWith("http://xmlpull.org/v1/doc/")) |
| 104 | return false; |
| 105 | if (prop) |
| 106 | return n1.substring(42).equals(n2); |
| 107 | else |
| 108 | return n1.substring(40).equals(n2); |
| 109 | } |
| 110 | |
| 111 | private final boolean adjustNsp() throws XmlPullParserException { |
| 112 |
no test coverage detected