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

ahuber pushed a commit to branch v2
in repository https://gitbox.apache.org/repos/asf/isis.git

commit 2d984eb4264de5451271e63265476e9eeafb6519
Author: Andi Huber <ahu...@apache.org>
AuthorDate: Tue Oct 16 15:37:10 2018 +0200

    ISIS-2006: fixes typo in warning message
    
    Task-Url: https://issues.apache.org/jira/browse/ISIS-2006
---
 .../src/main/java/org/apache/isis/applib/client/RestfulClient.java     | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 
a/core/applib/src/main/java/org/apache/isis/applib/client/RestfulClient.java 
b/core/applib/src/main/java/org/apache/isis/applib/client/RestfulClient.java
index 6496db1..53c0fc4 100644
--- a/core/applib/src/main/java/org/apache/isis/applib/client/RestfulClient.java
+++ b/core/applib/src/main/java/org/apache/isis/applib/client/RestfulClient.java
@@ -212,7 +212,8 @@ public class RestfulClient {
             Class<?> MOXyJsonProvider = 
_Context.loadClass("org.eclipse.persistence.jaxb.rs.MOXyJsonProvider");
             client.register(MOXyJsonProvider);
         } catch (Exception e) {
-            LOG.warning("This implementaion of RestfulClient does require the 
class 'MOXyJsonProvider' on the class-path."
+            LOG.warning("This implementation of RestfulClient does require the 
class 'MOXyJsonProvider'"
+                    + " on the class-path."
                     + " Are you missing a maven dependency?");
         }
     }

Reply via email to