Skip to content
Commit a3595490 authored by Ceki Gulcu's avatar Ceki Gulcu
Browse files

- applying some of the changes proposed by Joern Huxhorn in his patch dated 2008-01-26 (bug 109)

The defensive code compensating for the bug in 0.9.8 until 0.9.9 is released was not merged because it is a workaround hiding the true logic of the code.
 
  void buildResponseHeaderMap() {
    if (responseHeaderMap == null) {
      if(serverAdapter != null) {     <-- ---- not merged
        responseHeaderMap = serverAdapter.buildResponseHeaderMap();
      } else {
        responseHeaderMap = new HashMap<String, String>();
      }
     }
   }
parent 920ef0b1
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment