Skip to content

Commit

Permalink
Merge pull request #380 from hpehl/HAL-1638
Browse files Browse the repository at this point in the history
HAL-1638: Add '*' as allowed character for properties item
  • Loading branch information
hpehl committed Mar 3, 2020
2 parents 14adf87 + 0667be3 commit c799b57
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -59,7 +59,7 @@ public boolean isEmpty() {

@Override
public String allowedCharacters() {
return "- . : @ ; = ? ! # $ % & [ ] ( )";
return "- . : @ ; = ? ! # $ % & [ ] ( ) *";
}

@Override
Expand Down Expand Up @@ -94,7 +94,7 @@ public void removeTag(Map<String, String> tag) {
static class MapMapping implements TagsMapping<Map<String, String>> {

private static final RegExp REGEX = RegExp.compile(
"^([\\w\\-\\.\\/]+)=([\\w\\-\\.\\/:\\@\\;\\=\\?\\!\\#\\$\\%\\&\\[\\]\\,\\(\\)]+)$"); //NON-NLS
"^([\\w\\-\\.\\/]+)=([\\w\\-\\.\\/:\\@\\;\\=\\?\\!\\#\\$\\%\\&\\[\\]\\,\\(\\)\\*]+)$"); //NON-NLS
private static final String EQ = "=";

@Override
Expand Down

0 comments on commit c799b57

Please sign in to comment.