Merge remote-tracking branch 'origin/jetty-9.4.x' into jetty-10.0.x

Signed-off-by: gregw <gregw@webtide.com>
This commit is contained in:
gregw 2020-09-15 12:04:02 +02:00
commit 3bb419842d
1 changed files with 2 additions and 2 deletions

View File

@ -86,9 +86,9 @@ public class FileTestHelper
for (String name : files)
{
int i = name.lastIndexOf('_');
if (i < 0 || i == name.length()-1)
if (i < 0 || i == name.length() - 1)
continue;
String id = name.substring(i+1);
String id = name.substring(i + 1);
if (id.equals(sessionId))
{
fname = name;