Description
final int prefixLen = this.prefix == null ? 0 : this.prefix.length(); for (String key : this.backingConfig.keySet()) { if (key.startsWith(this.prefix)) {
If this.prefix == null, we would get NPE in startsWith():
public boolean startsWith(String prefix, int toffset) { char ta[] = value; int to = toffset; char pa[] = prefix.value;
Attachments
Issue Links
- links to