| Issue 248: | HttpMethod#toString cyclic reference problem | |
| 1 person starred this issue and may be notified of changes. | Back to list |
HttpMethod#toString occurs cyclic reference.
>> public String toString() {
>> return toString().toLowerCase();
>> }
This should be:
>> public String toString() {
>> return name().toUpperCase();
>> }
Aug 18, 2009
Project Member
#1
shinpei.ohtani@gmail.com
Status:
Fixed
|