[MNG-7445] - Refactoring, remove the useless line

Contribution by JakcyHu Gakiii

Signed-off-by: Karl Heinz Marbaise <khmarbaise@apache.org>
This commit is contained in:
Jacky 2022-03-04 23:09:54 +08:00 committed by Karl Heinz Marbaise
parent e85ff889b3
commit d92538b80f
No known key found for this signature in database
GPG Key ID: BF1518E0160788A2
1 changed files with 1 additions and 5 deletions

View File

@ -155,12 +155,8 @@ public class DefaultMavenSettingsBuilder
// ---------------------------------------------------------------------------------
// path = path.replaceAll( "//", "/" );
return new File( path ).getAbsoluteFile();
}
else
{
return new File( path ).getAbsoluteFile();
}
return new File( path ).getAbsoluteFile();
}
}