eolivelli commented on a change in pull request #3: [MWAR-371] Overlays break 
first-win rule for web resource with target path ending with '/'
URL: https://github.com/apache/maven-war-plugin/pull/3#discussion_r244155374
 
 

 ##########
 File path: src/main/java/org/apache/maven/plugins/war/util/PathSet.java
 ##########
 @@ -53,14 +52,14 @@ static String normalizeSubPath( String path )
         {
             return path;
         }
-        String cleanPath = path.replaceAll( "[\\\\]+", SEPARATOR )
-                .replaceAll( "[/]+" , SEPARATOR );
-        cleanPath = cleanPath.charAt( 0 ) == '/' ? cleanPath.substring( 1 ) : 
cleanPath;
+        String cleanPath = path.replaceAll( "[\\\\]+", File.separator )
 
 Review comment:
   sorry for late reply.
   I was meaning mostly the opposite
   
   `String cleanPath = path.replace(File.pathSeparator, "/")`
   
   This will replace windows/linux stuff with a fixed separator ('/')

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to