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 2019/09/12 15:21:47 UTC

[isis] 01/02: ISIS-2158 fixes links to sources for the demo-app

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 e4ffe6497ca1044e213a9e9db35569e0c859e943
Author: Andi Huber <ah...@apache.org>
AuthorDate: Thu Sep 12 16:51:52 2019 +0200

    ISIS-2158 fixes links to sources for the demo-app
---
 examples/apps/demo/src/main/java/domainapp/utils/DemoStub.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/examples/apps/demo/src/main/java/domainapp/utils/DemoStub.java b/examples/apps/demo/src/main/java/domainapp/utils/DemoStub.java
index 3063c19..d99a7d8 100644
--- a/examples/apps/demo/src/main/java/domainapp/utils/DemoStub.java
+++ b/examples/apps/demo/src/main/java/domainapp/utils/DemoStub.java
@@ -49,7 +49,7 @@ public abstract class DemoStub {
     private static Map<String, String> createConstants() {
         val map = new HashMap<String, String>();
         map.put("SOURCES_ISIS", "https://github.com/apache/isis/blob/master/core/applib/src/main/java");
-        map.put("SOURCES_DEMO", "https://github.com/apache/isis/tree/v2/example/application/demo/src/main/java");
+        map.put("SOURCES_DEMO", "https://github.com/apache/isis/tree/v2/examples/apps/demo/src/main/java");
         map.put("ISSUES_DEMO", "https://issues.apache.org/jira/"); 
         return map;
     }