Switch from PropertyKey enum to class (#971)

* Switch from PropertyKey enum to class

* Fix generic toArray
This commit is contained in:
Hannes Greule
2021-03-14 20:38:11 +01:00
committed by GitHub
parent 786baf09f4
commit d974164204
8 changed files with 409 additions and 209 deletions

View File

@ -200,7 +200,7 @@ public class PropertyPattern extends AbstractExtentPattern {
i++;
}
if (charSequence.length() > 0) {
key = PropertyKey.get(charSequence);
key = PropertyKey.getByName(charSequence);
}
last = i + 1;
}