You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ah...@apache.org on 2018/11/17 15:29:41 UTC

[isis] branch v2 updated: ISIS-1991: fix type in string format

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


The following commit(s) were added to refs/heads/v2 by this push:
     new 04e3397  ISIS-1991: fix type in string format
04e3397 is described below

commit 04e33979c159da293091b6871e69d999c2bb6441
Author: Andi Huber <ah...@apache.org>
AuthorDate: Sat Nov 17 16:29:36 2018 +0100

    ISIS-1991: fix type in string format
    
    Task-Url: https://issues.apache.org/jira/browse/ISIS-1991
---
 .../java/org/apache/isis/core/runtime/system/context/IsisContext.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/runtime/src/main/java/org/apache/isis/core/runtime/system/context/IsisContext.java b/core/runtime/src/main/java/org/apache/isis/core/runtime/system/context/IsisContext.java
index de2938c..296493c 100644
--- a/core/runtime/src/main/java/org/apache/isis/core/runtime/system/context/IsisContext.java
+++ b/core/runtime/src/main/java/org/apache/isis/core/runtime/system/context/IsisContext.java
@@ -139,7 +139,7 @@ public interface IsisContext {
                 return DeploymentType.PROTOTYPING;
             default:
                 throw new IllegalArgumentException(
-                        String.format("unknown deployment type '%s' in config property 's%'", 
+                        String.format("unknown deployment type '%s' in config property '%s'", 
                                 deploymentTypeLiteral, "isis.deploymentType"));
             }