Author: ay Date: Fri Jan 25 11:21:39 2013 New Revision: 1438456 URL: http://svn.apache.org/viewvc?rev=1438456&view=rev Log: Merged revisions 1438451 via svn merge from https://svn.apache.org/repos/asf/cxf/branches/2.6.x-fixes
........ r1438451 | ay | 2013-01-25 12:05:01 +0100 (Fri, 25 Jan 2013) | 17 lines Merged revisions 1438443 via svn merge from https://svn.apache.org/repos/asf/cxf/branches/2.7.x-fixes ........ r1438443 | ay | 2013-01-25 11:53:00 +0100 (Fri, 25 Jan 2013) | 9 lines Merged revisions 1438442 via svn merge from https://svn.apache.org/repos/asf/cxf/trunk ........ r1438442 | ay | 2013-01-25 11:51:25 +0100 (Fri, 25 Jan 2013) | 1 line fix to the wrong method in CXF-4752 ........ ........ ........ Modified: cxf/branches/2.5.x-fixes/ (props changed) cxf/branches/2.5.x-fixes/rt/core/src/main/java/org/apache/cxf/feature/StaxTransformFeature.java Propchange: cxf/branches/2.5.x-fixes/ ------------------------------------------------------------------------------ Binary property 'svnmerge-integrated' - no diff available. Modified: cxf/branches/2.5.x-fixes/rt/core/src/main/java/org/apache/cxf/feature/StaxTransformFeature.java URL: http://svn.apache.org/viewvc/cxf/branches/2.5.x-fixes/rt/core/src/main/java/org/apache/cxf/feature/StaxTransformFeature.java?rev=1438456&r1=1438455&r2=1438456&view=diff ============================================================================== --- cxf/branches/2.5.x-fixes/rt/core/src/main/java/org/apache/cxf/feature/StaxTransformFeature.java (original) +++ cxf/branches/2.5.x-fixes/rt/core/src/main/java/org/apache/cxf/feature/StaxTransformFeature.java Fri Jan 25 11:21:39 2013 @@ -65,7 +65,7 @@ public class StaxTransformFeature extend } public void setSkipOnFault(boolean value) { - out.setAttributesToElements(value); + out.setSkipOnFault(value); } public void setOutAppendElements(Map<String, String> map) {
