You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by th...@apache.org on 2021/03/09 12:49:00 UTC

[tapestry-5] branch 5.6.x updated: TAP5-2665: Disallow requests for folders in the classpath by default # Conflicts: # tapestry-core/src/main/java/org/apache/tapestry5/modules/AssetsModule.java

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

thiagohp pushed a commit to branch 5.6.x
in repository https://gitbox.apache.org/repos/asf/tapestry-5.git


The following commit(s) were added to refs/heads/5.6.x by this push:
     new 0cd2413  TAP5-2665: Disallow requests for folders in the classpath by default # Conflicts: #	tapestry-core/src/main/java/org/apache/tapestry5/modules/AssetsModule.java
0cd2413 is described below

commit 0cd241307016af8c8fb53de4dc4eaa88e040d070
Author: Thiago H. de Paula Figueiredo <th...@arsmachina.com.br>
AuthorDate: Tue Mar 9 09:48:51 2021 -0300

    TAP5-2665: Disallow requests for folders in the classpath by default
    # Conflicts:
    #	tapestry-core/src/main/java/org/apache/tapestry5/modules/AssetsModule.java
---
 .../org/apache/tapestry5/internal/services/assets/ChecksumPath.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tapestry-core/src/main/java/org/apache/tapestry5/internal/services/assets/ChecksumPath.java b/tapestry-core/src/main/java/org/apache/tapestry5/internal/services/assets/ChecksumPath.java
index fef200c..68e1b9f 100644
--- a/tapestry-core/src/main/java/org/apache/tapestry5/internal/services/assets/ChecksumPath.java
+++ b/tapestry-core/src/main/java/org/apache/tapestry5/internal/services/assets/ChecksumPath.java
@@ -27,7 +27,7 @@ import java.io.IOException;
  */
 public class ChecksumPath
 {
-    private static final String NON_EXISTING_RESOURCE = "_________________________";
+    static final String NON_EXISTING_RESOURCE = "_________________________";
 
     public final String checksum;