Menu

#33 ContentParser bug

open
nobody
Bug (26)
5
2010-12-22
2010-12-22
Anonymous
No

No more than one parameter is read.

private void insert() {
insert(name, value);
}

Should be:
private void insert() {
insert(name, value);
name.clear();
value.clear();
}

Discussion


Log in to post a comment.