mirror of https://github.com/apache/archiva.git
Fixed snapshot dep and removed jvm 1.5 methods
git-svn-id: https://svn.apache.org/repos/asf/maven/repository-manager/trunk@370734 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
377ed68146
commit
abbfa168f4
|
@ -633,7 +633,7 @@ public class RepositoryConverterTest
|
|||
|
||||
private static String normalizeString( String path )
|
||||
{
|
||||
return path.trim().replace( "\r\n", "\n" ).replace( '\r', '\n' );
|
||||
return path.trim().replaceAll( "\r\n", "\n" ).replace( '\r', '\n' );
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue