cxf git commit: Fixing a 3.1.x test build

2016-05-11 Thread sergeyb
Repository: cxf
Updated Branches:
  refs/heads/3.1.x-fixes b029fcdc8 -> c4a6faf0b


Fixing a 3.1.x test build


Project: http://git-wip-us.apache.org/repos/asf/cxf/repo
Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/c4a6faf0
Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/c4a6faf0
Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/c4a6faf0

Branch: refs/heads/3.1.x-fixes
Commit: c4a6faf0b8ba43143cdb96c8258a4b335f794b2d
Parents: b029fcd
Author: Sergey Beryozkin 
Authored: Wed May 11 20:08:31 2016 +0100
Committer: Sergey Beryozkin 
Committed: Wed May 11 20:08:31 2016 +0100

--
 .../cxf/spring/boot/autoconfigure/CxfAutoConfigurationTests.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/cxf/blob/c4a6faf0/integration/spring-boot/autoconfigure/src/test/java/org/apache/cxf/spring/boot/autoconfigure/CxfAutoConfigurationTests.java
--
diff --git 
a/integration/spring-boot/autoconfigure/src/test/java/org/apache/cxf/spring/boot/autoconfigure/CxfAutoConfigurationTests.java
 
b/integration/spring-boot/autoconfigure/src/test/java/org/apache/cxf/spring/boot/autoconfigure/CxfAutoConfigurationTests.java
index 2e9780f..9744473 100644
--- 
a/integration/spring-boot/autoconfigure/src/test/java/org/apache/cxf/spring/boot/autoconfigure/CxfAutoConfigurationTests.java
+++ 
b/integration/spring-boot/autoconfigure/src/test/java/org/apache/cxf/spring/boot/autoconfigure/CxfAutoConfigurationTests.java
@@ -88,8 +88,8 @@ public class CxfAutoConfigurationTests {
 load(CxfAutoConfiguration.class, 
"spring.cxf.servlet.load-on-startup=1");
 ServletRegistrationBean registrationBean = this.context
 .getBean(ServletRegistrationBean.class);
-assertThat(ReflectionTestUtils.getField(registrationBean, 
"loadOnStartup"),
-equalTo(1));
+Integer value = 
(Integer)ReflectionTestUtils.getField(registrationBean, "loadOnStartup");
+assertThat(value, equalTo(1));
 }
 
 @Test



cxf git commit: add the index info in the error text to help error analysis

2016-05-11 Thread ay
Repository: cxf
Updated Branches:
  refs/heads/3.0.x-fixes 62e0f8d45 -> 44d015322


add the index info in the error text to help error analysis


Project: http://git-wip-us.apache.org/repos/asf/cxf/repo
Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/44d01532
Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/44d01532
Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/44d01532

Branch: refs/heads/3.0.x-fixes
Commit: 44d015322386fcdb2910be38da77f8b9ef6138a3
Parents: 62e0f8d
Author: Akitoshi Yoshida 
Authored: Wed May 11 13:57:33 2016 +0200
Committer: Akitoshi Yoshida 
Committed: Wed May 11 13:58:57 2016 +0200

--
 .../src/main/java/org/apache/cxf/jaxrs/impl/UriBuilderImpl.java| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/cxf/blob/44d01532/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/impl/UriBuilderImpl.java
--
diff --git 
a/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/impl/UriBuilderImpl.java 
b/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/impl/UriBuilderImpl.java
index ae10a1b..f04c4d0 100644
--- 
a/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/impl/UriBuilderImpl.java
+++ 
b/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/impl/UriBuilderImpl.java
@@ -94,7 +94,7 @@ public class UriBuilderImpl extends UriBuilder implements 
Cloneable {
 }
 for (int i = 0; i < values.length; i++) {
 if (values[i] == null) {
-throw new IllegalArgumentException("Template parameter value 
is set to null");
+throw new IllegalArgumentException("Template parameter value 
at position " + i + " is set to null");
 }
 }
 



cxf git commit: add the index info in the error text to help error analysis

2016-05-11 Thread ay
Repository: cxf
Updated Branches:
  refs/heads/3.1.x-fixes 340a1305b -> b029fcdc8


add the index info in the error text to help error analysis


Project: http://git-wip-us.apache.org/repos/asf/cxf/repo
Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/b029fcdc
Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/b029fcdc
Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/b029fcdc

Branch: refs/heads/3.1.x-fixes
Commit: b029fcdc8c4771add662cd438df99c46f077ad42
Parents: 340a130
Author: Akitoshi Yoshida 
Authored: Wed May 11 13:57:33 2016 +0200
Committer: Akitoshi Yoshida 
Committed: Wed May 11 13:58:12 2016 +0200

--
 .../src/main/java/org/apache/cxf/jaxrs/impl/UriBuilderImpl.java| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/cxf/blob/b029fcdc/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/impl/UriBuilderImpl.java
--
diff --git 
a/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/impl/UriBuilderImpl.java 
b/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/impl/UriBuilderImpl.java
index beb38e9..261351b 100644
--- 
a/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/impl/UriBuilderImpl.java
+++ 
b/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/impl/UriBuilderImpl.java
@@ -94,7 +94,7 @@ public class UriBuilderImpl extends UriBuilder implements 
Cloneable {
 }
 for (int i = 0; i < values.length; i++) {
 if (values[i] == null) {
-throw new IllegalArgumentException("Template parameter value 
is set to null");
+throw new IllegalArgumentException("Template parameter value 
at position " + i + " is set to null");
 }
 }
 



cxf git commit: add the index info in the error text to help error analysis

2016-05-11 Thread ay
Repository: cxf
Updated Branches:
  refs/heads/master ee6ceea0d -> 242fc643d


add the index info in the error text to help error analysis


Project: http://git-wip-us.apache.org/repos/asf/cxf/repo
Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/242fc643
Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/242fc643
Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/242fc643

Branch: refs/heads/master
Commit: 242fc643d4e8f71328193c7827150ca19faa0eeb
Parents: ee6ceea
Author: Akitoshi Yoshida 
Authored: Wed May 11 13:57:33 2016 +0200
Committer: Akitoshi Yoshida 
Committed: Wed May 11 13:57:33 2016 +0200

--
 .../src/main/java/org/apache/cxf/jaxrs/impl/UriBuilderImpl.java| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/cxf/blob/242fc643/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/impl/UriBuilderImpl.java
--
diff --git 
a/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/impl/UriBuilderImpl.java 
b/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/impl/UriBuilderImpl.java
index beb38e9..261351b 100644
--- 
a/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/impl/UriBuilderImpl.java
+++ 
b/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/impl/UriBuilderImpl.java
@@ -94,7 +94,7 @@ public class UriBuilderImpl extends UriBuilder implements 
Cloneable {
 }
 for (int i = 0; i < values.length; i++) {
 if (values[i] == null) {
-throw new IllegalArgumentException("Template parameter value 
is set to null");
+throw new IllegalArgumentException("Template parameter value 
at position " + i + " is set to null");
 }
 }