Created
May 21, 2015 16:33
-
-
Save benhardy/9b3e80a30ba18f8c86bd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public HttpField getField(String name) | |
{ | |
for (int i=0;i<_fields.size();i++) | |
{ | |
HttpField f=_fields.get(i); | |
if (f.getName().equalsIgnoreCase(name)) | |
return f; | |
} | |
return null; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment