Repository: cxf Updated Branches: refs/heads/master 3bf3d07c9 -> d721bd154
[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/d721bd15 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/d721bd15 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/d721bd15 Branch: refs/heads/master Commit: d721bd15440cdacd94f5835ecfe513db891262cf Parents: 3bf3d07 Author: Daniel Kulp <[email protected]> Authored: Wed Jul 30 14:28:49 2014 -0400 Committer: Daniel Kulp <[email protected]> Committed: Wed Jul 30 14:28:49 2014 -0400 ---------------------------------------------------------------------- .../wsdlto/frontend/jaxws/customization/CustomizationParser.java | 1 - 1 file changed, 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/d721bd15/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(); } }
