Codebase list findbugs / db49eeb
Fixed a source incompatibility with dom4j 2.x Emmanuel Bourg 6 years ago
3 changed file(s) with 16 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
00 findbugs (3.1.0~preview2-2) UNRELEASED; urgency=medium
11
22 * Team upload.
3 * Fixed a source incompatibility with dom4j 2.x
34 * Switch to debhelper level 10
45 * Standards-Version updated to 4.1.1
56
0 Description: Fixes the compatibility with dom4j 2.x
1 Author: Emmanuel Bourg <ebourg@apache.org>
2 Forwarded: no
3 --- a/src/java/edu/umd/cs/findbugs/xml/XMLUtil.java
4 +++ b/src/java/edu/umd/cs/findbugs/xml/XMLUtil.java
5 @@ -30,7 +30,7 @@
6
7 @SuppressWarnings("unchecked")
8 public static <T> List<T> selectNodes(Node node, String arg0) {
9 - return node.selectNodes(arg0);
10 + return (List) node.selectNodes(arg0);
11 }
12
13 }
1212 0013-dont-fetch-external-libraries.patch
1313 0014-asm-compatibility.patch
1414 0015-reproducibility.patch
15 0016-dom4j2-compatibility.patch