Skip to content
  1. Mar 19, 2008
  2. Mar 18, 2008
  3. Mar 13, 2008
  4. Mar 11, 2008
  5. Mar 05, 2008
  6. Mar 04, 2008
  7. Feb 29, 2008
  8. Feb 04, 2008
  9. Jan 31, 2008
  10. Jan 30, 2008
  11. Jan 28, 2008
    • Ceki Gulcu's avatar
      - applying some of the changes proposed by Joern Huxhorn in his patch dated 2008-01-26 (bug 109) · a3595490
      Ceki Gulcu authored
      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>();
            }
           }
         }
      a3595490