Subversion Repository Public Repository

litesoft

Diff Revisions 821 vs 822 for /trunk/Java/core/Server/src/org/litesoft/util/Utils.java

Diff revisions: vs.
  @@ -174,14 +174,14 @@
174 174 {
175 175 if ( new File( pPath ).isDirectory() )
176 176 {
177 - if ( !Utils.endsWithPathSep( pPath ) )
177 + if ( !Paths.endsWithSep( pPath ) )
178 178 {
179 179 pPath += "/";
180 180 }
181 181 }
182 182 else
183 183 {
184 - int at = Utils.lastPathSepAt( pPath );
184 + int at = Paths.lastSepAt( pPath );
185 185 if ( at == -1 )
186 186 {
187 187 pPath = "./";