Skip to content

Commit

Permalink
Merge pull request #5795 from hieupham007/timob-11671-3_3_X
Browse files Browse the repository at this point in the history
[TIMOB-11671](3_3_X): Use 'theHeaders' instead
  • Loading branch information
hieupham007 committed Jun 12, 2014
2 parents 5d80e53 + bfe84c1 commit 64d1a09
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -769,7 +769,7 @@ public String getResponseHeader(String headerName)
if(theHeaders != null) {
boolean firstPass = true;
StringBuilder sb = new StringBuilder(32);
for (Header h : responseHeaders) {
for (Header h : theHeaders) {
if (h.getName().equals(headerName)) {
if (!firstPass) {
sb.append(", ");
Expand Down

0 comments on commit 64d1a09

Please sign in to comment.