Repository: cxf Updated Branches: refs/heads/3.0.x-fixes 485bbc4a0 -> 211c15f45
[CXF-5862] Make sure we don't skip binding nodes in the binding file Fixes a potential NPE if there are an odd number of binding nodes Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/211c15f4 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/211c15f4 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/211c15f4 Branch: refs/heads/3.0.x-fixes Commit: 211c15f454d2a7a6ef271ada4b8b014b647d1996 Parents: 485bbc4 Author: Daniel Kulp <[email protected]> Authored: Wed Jul 30 14:28:49 2014 -0400 Committer: Daniel Kulp <[email protected]> Committed: Wed Jul 30 14:30:11 2014 -0400 ---------------------------------------------------------------------- .../wsdlto/frontend/jaxws/customization/CustomizationParser.java | 1 - 1 file changed, 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/211c15f4/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/customization/CustomizationParser.java ---------------------------------------------------------------------- diff --git a/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/customization/CustomizationParser.java b/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/customization/CustomizationParser.java index e9faf97..7352010 100644 --- a/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/customization/CustomizationParser.java +++ b/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/customization/CustomizationParser.java @@ -300,7 +300,6 @@ public final class CustomizationParser { } } appinfoNode.appendChild(cloneNode); - childNode = childNode.getNextSibling(); } }
