This is an automated email from the ASF dual-hosted git repository.

reta pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cxf.git


The following commit(s) were added to refs/heads/master by this push:
     new c6ec2a2  fixing CXF-7980 (#523)
c6ec2a2 is described below

commit c6ec2a2db4f790b0eda782c6260c2149c91c0991
Author: Ivan Junckes Filho <[email protected]>
AuthorDate: Wed Mar 13 19:18:26 2019 -0300

    fixing CXF-7980 (#523)
---
 .../org/apache/cxf/microprofile/client/cdi/RestClientExtension.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/rt/rs/microprofile-client/src/main/java/org/apache/cxf/microprofile/client/cdi/RestClientExtension.java
 
b/rt/rs/microprofile-client/src/main/java/org/apache/cxf/microprofile/client/cdi/RestClientExtension.java
index 6be123e..e61512f 100644
--- 
a/rt/rs/microprofile-client/src/main/java/org/apache/cxf/microprofile/client/cdi/RestClientExtension.java
+++ 
b/rt/rs/microprofile-client/src/main/java/org/apache/cxf/microprofile/client/cdi/RestClientExtension.java
@@ -32,8 +32,8 @@ import javax.enterprise.inject.spi.WithAnnotations;
 import org.eclipse.microprofile.rest.client.inject.RegisterRestClient;
 
 public class RestClientExtension implements Extension {
-    private static Set<Class<?>> restClientClasses = new LinkedHashSet<>();
-    private static Set<Throwable> errors = new LinkedHashSet<>();
+    private Set<Class<?>> restClientClasses = new LinkedHashSet<>();
+    private Set<Throwable> errors = new LinkedHashSet<>();
     public void findClients(@Observes 
@WithAnnotations({RegisterRestClient.class}) ProcessAnnotatedType<?> pat) {
         Class<?> restClient = pat.getAnnotatedType().getJavaClass();
         if (restClient.isInterface()) {

Reply via email to