Use string concat instead of gstring

This commit is contained in:
Ryan Ernst 2016-07-25 17:30:15 -07:00
parent c2c9b51732
commit 7bf6676d21
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ public class LicenseHeadersTask extends AntTask {
if (categoryName.length() != 5) {
throw new IllegalArgumentException("License category name must be exactly 5 characters, got ${categoryName}");
}
additionalLicenses.put("${categoryName}${familyName}", pattern);
additionalLicenses.put(categoryName + familyName, pattern);
}
@Override