Use string concat instead of gstring
This commit is contained in:
parent
c2c9b51732
commit
7bf6676d21
|
@ -77,7 +77,7 @@ public class LicenseHeadersTask extends AntTask {
|
||||||
if (categoryName.length() != 5) {
|
if (categoryName.length() != 5) {
|
||||||
throw new IllegalArgumentException("License category name must be exactly 5 characters, got ${categoryName}");
|
throw new IllegalArgumentException("License category name must be exactly 5 characters, got ${categoryName}");
|
||||||
}
|
}
|
||||||
additionalLicenses.put("${categoryName}${familyName}", pattern);
|
additionalLicenses.put(categoryName + familyName, pattern);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in New Issue