URIish: suppress non-localized message warning

Change-Id: I3ec37c67ba6f00ad8bf396aa3261dd90f35789ea
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
This commit is contained in:
Matthias Sohn 2020-04-27 15:11:52 +02:00 committed by David Pursehouse
parent f3bc72fd21
commit 560ef875e3
1 changed files with 2 additions and 1 deletions

View File

@ -738,7 +738,8 @@ public String getHumanishName() throws IllegalArgumentException {
else if (result.endsWith(Constants.DOT_GIT_EXT))
result = result.substring(0, result.length()
- Constants.DOT_GIT_EXT.length());
if (("file".equals(scheme) || LOCAL_FILE.matcher(s).matches())
if (("file".equals(scheme) || LOCAL_FILE.matcher(s) //$NON-NLS-1$
.matches())
&& result.endsWith(Constants.DOT_BUNDLE_EXT)) {
result = result.substring(0,
result.length() - Constants.DOT_BUNDLE_EXT.length());