ReadChangedPathFilter: fix Non-externalized string literal warning

Change-Id: I78161a2dbc08918267bc59a1ed267c5108f5c391
This commit is contained in:
Jörg Kubitz 2023-08-16 14:39:23 +02:00 committed by Matthias Sohn
parent e7a09e316d
commit a56930723f
1 changed files with 2 additions and 2 deletions

View File

@ -62,9 +62,9 @@ static HashSet<String> changedPathStrings(byte[] data) {
HashSet<String> changed_paths = new HashSet<>();
for (int i = 0; i < commit_count; i++) {
int prior_cumul = i == 0 ? 0 : changed_path_length_cumuls[i - 1];
String changed_path = "";
String changed_path = ""; //$NON-NLS-1$
for (int j = prior_cumul; j < changed_path_length_cumuls[i]; j++) {
changed_path += data[bdat_offset + j] + ",";
changed_path += data[bdat_offset + j] + ","; //$NON-NLS-1$
}
changed_paths.add(changed_path);
}